clnhub / rtl8192eu-linux

Realtek rtl8192eu official Linux driver, versions: 5.2.19.1 (master), 5.6.3.1, 5.6.4 and 5.11.2.1 (default)
452 stars 91 forks source link

Installation error on Kali 5.10 #37

Closed danieljs777 closed 3 years ago

danieljs777 commented 3 years ago

./install_wifi.sh rmmod: ERROR: Module 8192eu is not currently loaded rmmod: ERROR: Module rtl8xxxu is not currently loaded Error! The module/version combo: rtl8192eu-1.0 is not located in the DKMS tree.

Creating symlink /var/lib/dkms/rtl8192eu/1.0/source -> /usr/src/rtl8192eu-1.0

DKMS: add completed.

Kernel preparation unnecessary for this kernel. Skipping...

Building module: cleaning build area... 'make' all KVER=5.10.0-kali4-amd64........(bad exit status: 2) Error! Bad return status for module build on kernel: 5.10.0-kali4-amd64 (x86_64)

in1rud3r commented 3 years ago

First make sure to update Kali to the latest version :

sudo apt update sudo apt full-upgrade -y

Make sure you have the prerequisites installed :

sudo apt -y install linux-headers-generic build-essential dkms git

I had some issues with the script too, try doing it without the script (manually), fixed it for me :

sudo dkms add . sudo dkms install rtl8192eu/1.0 sudo modprobe 8192eu

nethaxstark commented 3 years ago

./install_wifi.sh rmmod: ERROR: Module 8192eu is not currently loaded rmmod: ERROR: Module rtl8xxxu is not currently loaded Error! The module/version combo: rtl8192eu-1.0 is not located in the DKMS tree.

Creating symlink /var/lib/dkms/rtl8192eu/1.0/source -> /usr/src/rtl8192eu-1.0

DKMS: add completed.

Kernel preparation unnecessary for this kernel. Skipping...

Building module: cleaning build area... 'make' all KVER=5.10.0-kali4-amd64........(bad exit status: 2) Error! Bad return status for module build on kernel: 5.10.0-kali4-amd64 (x86_64)

I Solved it same problem in mine kali 5.10.0

just type there make clean make make install and by typing these commands simply it will install then type sudo modprobe 8192eu

and your adapter is good to go

danieljs777 commented 3 years ago

Hi guys! I already tried that with other drivers, but reviewing those steps on this release has come to work. Thanks!!