Belkin Wireless Adapter Card F9L1101V2 not Working on Ubuntu 14.04
Solution 1:
I compiled this driver on my computer and it compiled with no errors or warnings.
Do:
sudo apt-get install --reinstall linux-headers-$(uname -r) build-essential git
git clone https://github.com/lwfinger/rtl8192du.git
cd rtl8192du
make
sudo make install
sudo modprobe 8192du
When you have an upgrade to the kernel you will have to do:
cd rtl8192du
make clean
make
sudo make install
Reboot Original directions are from here courtesy of chili555.
Install driver without internet connection:
Download the driver rtl8192du to a flash drive then drag it to your ubuntu desktop, right click and choose extract here:
cd Desktop/rtl8192du-master
make
sudo make install
sudo modprobe 8192du
When there is a kernel upgrade you will have to do:
cd rtl8192du
make clean
make
sudo make install