PC & IT SUPPORT MADE EASY FORUM
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Install non free wlan drivers on kali linux

Go down

Install non free wlan drivers on kali linux Empty Install non free wlan drivers on kali linux

Post by jamied_uk 12th November 2024, 16:45

[*]
Code:
sudo nano /etc/apt/sources.list
Add the following line (if it's not already there):
plaintext

Copy code

Code:
deb http://http.kali.org/kali kali-rolling main non-free contrib
Save and close the file (
Code:
Ctrl+X
, then
Code:
Y
, then
Code:
Enter
).
[*]Update the package list: Update the package list to include the newly added non-free packages.
bash

Copy code

Code:
sudo apt update

[*]Install the required wireless drivers: Now, install the non-free wireless drivers. For many wireless adapters, the
Code:
firmware-linux
package or similar packages like
Code:
firmware-iwlwifi
(Intel) or
Code:
firmware-realtek
(Realtek) are necessary.
To install all non-free firmware packages:
bash

Copy code

Code:
sudo apt install -y firmware-linux firmware-linux-nonfree firmware-misc-nonfree
For specific drivers (such as Intel or Realtek), you can also use:
bash

Copy code

Code:
# For Intel WiFi
sudo apt install -y firmware-iwlwifi

# For Realtek WiFi
sudo apt install -y firmware-realtek

[*]Load the driver: After installation, load the driver with:
bash

Copy code

Code:
sudo modprobe DRIVER_NAME
Replace
Code:
DRIVER_NAME
with the specific module name if you know it (e.g.,
Code:
iwlwifi
for Intel adapters). If unsure, rebooting is often simpler and will load the driver automatically.
[*]Reboot your system: Reboot to apply the changes:
bash

Copy code

Code:
sudo reboot
jamied_uk
jamied_uk
Admin

Posts : 3053
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum