How to use WiFi adapter on Ubuntu 16.04 desktop PC - Realtek RTL8188EUS 802.11n Wireless USB Network Adapter Driver installation
Installation of Realtek RTL8188EUS 802.11n Wireless USB Network Adapter on Desktop PC having Ubuntu 16.04 OS
My PC is running in Ubuntu 16.04 OS, recently I thought of using a dongle wife adapter to access our home's Wifi network. For this I used Realtek RTL8188EUS 802.11n Wireless USB Network Adapter ( Model No: OT-WUA950NM )
This small device cost around Rupees 250/- to Rs 300/- in India. I did the following steps for installation of this Realtek Nano Wifi Adapter:
Plug Realtek RTL8188EUS 802.11n Wireless USB Network Adapter to your PC's USB port,
Take the terminal application and run the command "lsusb" to list the plugged in usb devices:
Myhome:~$ lsusb
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 003: ID 0bda:8179 Realtek Semiconductor Corp. RTL8188EUS 802.11n Wireless Network Adapter
Bus 003 Device 002: ID 046d:c077 Logitech, Inc. M105 Optical Mouse
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
You can see a result of "lsusb" command. You will see a line like this "Bus 001 Device 003: ID 0bda:8179 Realtek Semiconductor Corp. RTL8188EUS 802.11n Wireless Network Adapter" in the result list.
This confirms that the device is detected by the system.
You can see here the list of Wifi adapters supported by Ubuntu. (https://help.ubuntu.com/community/WifiDocs/WirelessCardsSupported)
Next step is to install the driver for the Realtek 802.11n Wireless Network Adapter. The driver is in github location https://github.com/lwfinger/rtl8188eu.git
For installation of driver, make sure you are logged in as "root" user.
Just try command "whoami" command in terminal. If not root user, login as root user:
Try command
su - root and hit Enter key, then enter root user password.
Now have logged in as ROOT user;
In the terminal run following commands:
-------------------------------------------
root:~$ git clone https://github.com/lwfinger/rtl8188eu.git
root:~$ cd rtl8188eu
root:~$ make
root:~$ make install
root:~$ modprobe 8188eu
root:~$ reboot
-------------------------------------------
root:~$ git clone https://github.com/lwfinger/rtl8188eu.git
The git clone command will download the driver
Other commands set up the installation path and directory and install the driver.
Finally you have to reboot the machine.
After reboot the check on System Wifi settings, on top left corner of the screen. There you can se your local wifi name, click on that and you will be asked for Wifi network password. Enter the password and you can enjoy Wireless wifi Internet of your Desktop PC.
Comments
Post a Comment