Ubuntu – How to install driver for TP-Link TL-WN722N(EU)V2 on Ubuntu 17.04 Kylin

driversrealtek-wirelesswireless

I can not install the TP-LINK WN722N V2, which includes a 8188 EUS chip.
Then I tried to install the backports v4.4.2,but
do not want to recognize either.

The TP-Link driver installation errors thrown out:

man@kman-livve:~$ cd '/home/kman/Documents/Tplink 722 N V2/rtl8188EUS_linux_v4.3.0.8_13968.20150417'
kman@kman-livve:~/Documents/Tplink ...$ sudo make

"******************************************"
"NO SKRC,we will use default KSRC"
"******************************************"
make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/4.10.0-15-generic/build M=/home/kman/Documents/Tplink 722 N V2/rtl8188EUS_linux_v4.3.0.8_13968.20150417  modules
make[1]: Entering directory '/usr/src/linux-headers-4.10.0-15-generic'
arch/x86/Makefile:140: CONFIG_X86_X32 enabled but no binutils support
make[1]: *** No rule to make target '722'.  Stop.
make[1]: Leaving directory '/usr/src/linux-headers-4.10.0-15-generic'
Makefile:1367: recipe for target 'modules' failed

A method to know him, I do not know about.
Thanks

Model:TL-WN722N(EU)_V2_161112_Linux.zip
Chipset:rtl8188EUS_linux_v4.3.0.8_13

http://www.tp-link.com/en/download/TL-WN722N.html#Driver

Best Answer

for version 2 the driver provided on official website don't work it has chip-set of RTL8188 so install "lwfinger" drivers

step:1 make a temporary directory

$ mkdir tmp

step:2 move to temporary directory

$ cd tmp

step:3 clone driver repository

$ git clone https://github.com/lwfinger/rtl8188eu.git

step:4 change directory of cloned repo !

$ cd rtl8188eu

step:5 make the driver for your system (Note: you should have kernal headers to make, google it !)

$ make all

step:6 after successful make

$ sudo make install

step:7 reboot your system

$ sudo reboot

after rebooting you will see the notification light turning on. have a nice day :)

edit: 10/03/2018

As @BradHein suggested step 7 isn't required , just plug out and plug in the adapter again!

Related Question