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
  • 69,223
  • 56
  • 216
  • 327
Beno
  • 81
  • 2
  • 2
  • 4
  • Post the folder content using `ls` command – Liso Dec 01 '16 at 10:05
  • How to do that ? Can you teach me ? – Beno Dec 01 '16 at 10:44
  • With the device plugged in, open a terminal window with CTRL + t and enter `lsusb` and post the results. There is a chance that the drivers that came with the adapter are too old to work – Jeremy31 Dec 01 '16 at 11:05
  • Open terminal, navigate to folder using `cd` command. Example: `cd path/to/folder` then do `ls` – Liso Dec 01 '16 at 11:09
  • Possible duplicate of [Connecting Asus USB-N13 Wireless Adapter](http://askubuntu.com/questions/168627/connecting-asus-usb-n13-wireless-adapter) – SuB Dec 01 '16 at 11:10
  • Jeremy31 here is a pic of lsusb command https://s15.postimg.org/3killnmgb/IMG_20161201_121703.jpg – Beno Dec 01 '16 at 11:25
  • SuB I read that topic and it gives me error 2 so its not working for me – Beno Dec 01 '16 at 11:29
  • Liso check this is my result of ls command https://s11.postimg.org/ojry2sqrn/IMG_20161201_122730.jpg – Beno Dec 01 '16 at 11:31

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,262
  • 9
  • 57
  • 113
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,217
  • 3
  • 50
  • 80