Celeb Glow
updates | March 08, 2026

Wifi adapter not working Kali linux

I have searched alot and everywhere the issues are with the kali os ran through virtual machines. I have installed Kali linux latest version 2016.1 on my laptop. And its the single os on my laptop, still the wifi is not showing. I have checked ifconfig it shows only loopback and ethernet adapter and on iwconfig it says there are no such adapter. But my laptop has wirekess adapters. I am looking for the solution please help! I checked compat wireless, it only shows wlan0 but doesn't work.

1

3 Answers

I got the solution. We just have to upgrade our distro and kali now has provided the fix.

apt-get -yf install dist-upgrade now this will take some time and your problem will be fixed.

Nearly all of hp laptops have this issue , it's the wifi adapter which only has one antenna and so you need to install a different firmware. I have to do it again and again so I made a script. Plug an Ethernet connection using USB tethering and

make a file fixwifi.sh using

nano fixwifi.sh

Copy the contents

apt install linux-headers-$(uname -r) git build-essential dkms
git clone git clone -b extended
sudo dkms add ./rtlwifi_new
sudo dkms install rtlwifi-new/0.6
sudo modprobe -r rtl8723de && sudo modprobe rtl8723de
echo "options rtl8723de ant_sel=2" | sudo tee /etc/modprobe.d/rtl8723de.conf
Save the file with
Ctrl+s and Ctrl+x

Execute it using

chmod +x fixwifi.sh && ./fixwifi.sh

and you are good to go.

1

on iwconfig it says there are no such adapter.

It seems that the driver of your wireless adapter isn't loaded. Please look for the driver of your wireless adaptor on the official website of the manufacturer.

The kali Linux is based on Debian. So you may try to install the drivers for Debian. If it doesn't work, you may need to find the source code and compile & install it manually.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy