davidbombal / Kali-Linux

253 stars 112 forks source link

rmmod: ERROR: Module r8188eu is not currently loaded #6

Open davcol1 opened 2 years ago

davcol1 commented 2 years ago

everything runs smoothly till i type in the "sudo rmmod r8188eu.ko" command then i get "rmmod: ERROR: Module r8188eu is not currently loaded"

used to work, dont know what went wrong. please fix this, thanks

0hv1 commented 2 years ago

! use these commands: sudo modprobe r8188eu.ko ! after that use: sudo rmmod r8188eu.ko

davcol1 commented 2 years ago

Thank you! Will try these out.

On Fri, 14 Jan 2022 at 11:31, Harsh Vardhan @.***> wrote:

! use these commands: sudo modprobe r8188eu.ko ! after that use: sudo rmmod r8188eu.ko

— Reply to this email directly, view it on GitHub https://github.com/davidbombal/Kali-Linux/issues/6#issuecomment-1012998830, or unsubscribe https://github.com/notifications/unsubscribe-auth/AWVQUUMO6Y6ZVK6AU3GUYA3UV73RZANCNFSM5LR5BL7Q . You are receiving this because you authored the thread.Message ID: @.***>

--

elon-fask commented 2 years ago

here' the solution https://github.com/Elon-Fask/Kali-Linux

Emilio1885 commented 2 years ago

Hi, i've a next problem when i tried to install the drivers

rmmod -v r8188eu.ko

rmmod: ERROR: Module r8188eu is not currently loaded

modprobe r8188eu.ko modprobe: FATAL: Module r8188eu.ko not found in directory /lib/modules/5.18.0-kali5-amd64

what's up? could someone help me? thanks!

elon-fask commented 2 years ago

follow this guide: https://github.com/Elon-Fask/Kali-Linux

elon-fask commented 2 years ago

let me know if it's work or not !!!

Emilio1885 commented 2 years ago

thank you... I tried to do it with that guide and it keeps telling me the same thing. I think the best is going to be Format C: hahahaha

Emilio1885 commented 2 years ago

Hi! it's work for me.

Your USB wifi already listed through lsusb command the ID 2357:010c is IDvendor and the IDproduct of the TP-Link TL-WN722N USB wifi.

2 ways to install the driver :

The wired connection is required

1) open the terminal and run the following command:

apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot

Then

apt-get install dkms git
git clone https://github.com/lwfinger/rtl8188eu.git
dkms add ./rtl8188eu
dkms build 8188eu/1.0
dkms install 8188eu/1.0
modprobe 8188eu
reboot

2) by compiling the source:

apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot

Then, Use the command apt-get install gcc make linux-headers-$(uname -r) to install the appropriate linux-headers pacakge , then run :

git clone https://github.com/lwfinger/rtl8188eu.git
cd rtl8188eu
make
make install
modprobe 8188eu
reboot

and it's done! see you!