I am new in Ubuntu and I don't known how to install my USB WiFi adapter driver!
My USB WiFi comes with a driver disk and there are 2 folders named "Linux" & "upload". Both folders contain .zip and tar.gz files. I have extracted them but I still can't install the driver.
How can I fix it so that I can access the internet?
82 Answers
You will need a connection to the internet to install
sudo apt-get install git build-essential linux-headers-generic
git clone
cd rtl8192eu-linux-driver
make
sudo make installReboot
After a kernel update is installed, you will need to reinstall the driver
cd rtl8192eu-linux-driver
make clean
make
sudo make installWithout internet, you can download on a computer with internet access and transfer it to the Ubuntu desktop. Right click on the file and choose extract here. Then in terminal
cd Desktop/rtl9182eu-linux-driver
make
sudo make installReboot 3 Have you tried run the installer ? If not, then run following command :
cd Desktop/Linux/upload/rtl8192EU_linux_v4.2.4_8819.20130822_beta
./install.shI saw readme.txt file, have you read that ? Maybe there's official instruction to install the driver.