Today I decided to purchase a wireless USB adaptor because my operating system, Kubuntu 18.04, is no longer detecting my wifi card. When I purchased it, I thought it would be the type of Wifi USB adaptor that you simply need to plug and it works right away, but when I unpacked it I unfortunately realized that it would be a little more complex to get it to work.
I was able to find and download the zip file of the driver for Linux (DWA-181_REVA_DRIVERS_v5.8.7.1_LINUX.zip) on the website of D-Link, but they don't provide any guidelines on how to install it.
Would anyone be able to provide some easy to follow steps that would allow me to install the driver?
Thanks in advance,
Eric
2 Answers
I dont have this specific wifi module to test it out myself, but just building driver from source should work.
First install dependencies depending on your package manager this can be done on Debian/Ubuntu using apt:
sudo apt update && sudo apt upgrade
sudo apt install build-essentialNext unzip the downloaded folder, and unzip the file in there, and there should be a folder called driver with a driver tarball, with the name rtl88x2BU_WiFi_linux_v5.8.7.1_*.tar.gz, decompress in whatever fashion you see fit, I simply right clicked in dolphin and extracted, open the newly decompressed folder and open a terminal to this location.
Now run:
sudo make
sudo make install
sudo modprobe DWA_181And your local Network Manager should pick up the wireless card from there.
4could you please check if its detected in lsusb.
These might be helpful but
There seems to be a similar issue with this adapter for 14.04 answered Install DWA-131 WiFi dongle driver under Ubuntu 14.04.4 so you can try with that solution first and then check the others.
This is the third thing i found that might work
sudo add-apt-repository ppa:hanipouspilot/rtlwifi
sudo apt-get update
sudo apt-get install rtl8192eu-dkmsAnd if nothing works search for errors regarding the device in /var/log/syslog (less /var/log/syslog | grep error).