When I ordered this TP-Link AC1300 Wireless Dual Band PCI-Express Adapter (Archer T6E), I looked into customers reviews and they said it worked fine with no drivers on Ubuntu. I didn't have a CD/DVD player on my desktop so I (on a laptop with a DVD drive) copied and pasted the DVD support disk content on to a USB drive and used that. But when I tried to run autorun.exe it puts up archive manager and says An error occurred while loading the archiveUbuntu verison- Ubuntu 16.04 LTS.
Output from: lspci -vnn
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 11)
Subsystem: ASRock Incorporation Motherboard (one of many) [1849:8168]
Kernel driver in use: r8169
Kernel modules: r8169I am fairly new to Ubuntu (1 month) and have learned alot (sudo commands) and now know that windows is overpriced and that ubuntu is better in most fields.
Thanks for the help.
34 Answers
You could build the linux driver from source, but it requires a good amount of linux experience
My repo here:
sudo apt-get install git linux-headers-amd64 build-essential
git clone
cd linux-wifi-88x2bu-driver
make
sudo make install
sudo modprobe 88x2buVerified to work with hostapd (AC1300 Archer T4U) 802.11ac
ID 2357:0115 TP-Link 802.11ac NIC I found this post on ubuntu-forum which mention the wifi-card you are using. So I'm going to instruct you to enable proprietary drivers.
Proprietary Drivers are not generally available by sudo apt-get update. You should go to
system settings -> software & updates
and click on the Additional Drivers tab. There you should see proprietary drivers available for use.
In your case, details of software should indicate that the driver is for "Using Broadcom 802.11 Linux STA wireless driver source from bcmwl-kernel-source (proprietary) Card. You should tick the radio button which will enable the use of the driver. Then apply changes.
I hope it resolves your issue.
I have never actually used any media (CD/DVD) bundled with a new router/gateway ... those devices are stand-alone and just talk http which is universal ... no driver updates required
Typically to define settings you connect using an ethernet cable or point your browser to your router using a special IP ... google : what ip is my router
By default, most router manufacturers use 192.168.0.1 or 192.168.1.1 as the default LAN IP address. This is the address you would enter into your browser's address bar to access the router configuration page
just goto
I had the same problem with AC1300 Archer T3U in an Ubuntu 20.04 kernel 5.13.0-28-generic.
I used the next repository from MaxG87.
you clone it with
git clone
enter to the download directory and use:
sudo make
It will start to create the driver and after five minutes when the construction is done, use the next command:
insmod 88x2bu.ko
All of this is in his own github page.