5

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?

Zanna
  • 70,465
Beno
  • 81

2 Answers2

4

You will need a connection to the internet to install

sudo apt-get install git build-essential linux-headers-generic
git clone https://github.com/Mange/rtl8192eu-linux-driver.git
cd rtl8192eu-linux-driver
make
sudo make install

Reboot

After a kernel update is installed, you will need to reinstall the driver

cd rtl8192eu-linux-driver
make clean
make
sudo make install

Without internet, you can download https://github.com/Mange/rtl8192eu-linux-driver/archive/master.zip 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 install
Reboot
Jeremy31
  • 12,602
  • 10
  • 58
  • 114
0

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.sh

I saw readme.txt file, have you read that ? Maybe there's official instruction to install the driver.

Liso
  • 15,377
  • 3
  • 51
  • 80