2

I'm currently running Ubuntu 14.04.3 with kernel version 3.19.0-25-generic and use the TP Link WN725N for Wi-fi.

I followed this guide for the driver installation otherwise I'd get barely any signal:

how to install tp link wn725n wifi usb adapter on ubuntu Ubuntu 14.04.3 LTS

I installed 16.04 with kernel 4.4 a week ago but the adapter didn't work out of the box so I followed the above method again but it didn't work. I was, like before, barely getting any signal.

Any way to get the drivers working for kernel 4.4?

EDIT: Output of lsusb as requested:

Bus 003 Device 002: ID 8087:8000 Intel Corp. 
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 004: ID 0bda:8179 Realtek Semiconductor Corp. 
Bus 001 Device 003: ID 04f2:b3c8 Chicony Electronics Co., Ltd 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

1 Answers1

0

try the following steps, it worked for me -

sudo apt-get update
sudo apt-get install linux-headers-$(uname -r) build-essential git
git clone https://github.com/lwfinger/rtl8188eu
cd rtl8188eu  
make all  
sudo make install  
sudo insmod 8188eu.ko
Charles Green
  • 21,339