This is really frustrating as I just bought my asus USB-AC68 and I cannot seem to find the right drivers for this one! Help would be appreciated as I've been looking around for hours now... Lsusb command returns ID 0b05:1817 for my wifi usb (as it is the only Asusteks in the list...)
EDIT: Running ubuntu 16.04
Thanks!...
33 Answers
I found some driver that should work. I forked the driver from and added the dkms.conf there. I've sent a pull request to diederikdehaas too.
Run in a terminal
sudo apt install git build-essential dkms
git clone
sudo dkms add ./rtl8814AU
sudo dkms install rtl8814AU/4.3.21The driver has your IDs.
If you install the driver this way, it will stay after kernel upgrades.
5I just got this thing in the mail today. Bought it because someone in the comments said "plugged it in to linux and it worked right out of the box. Definitely not true. soo... tried Pilot6's solution, but it didn't work for me. Spent the last few hours digging. Long story short, found this other project by the same guy on github
Here's what I did. Maybe someone smarter than me can fix my syntax if I'm not being very efficient...
git clone -b driver-4.3.21
cd rtl8814AU
sudo make && sudo make installoutput of make install
install -p -m 644 8814au.ko /lib/modules/4.4.0-59-generic/kernel/drivers/net/wireless/
/sbin/depmod -a 4.4.0-59-genericSo I ran
sudo modprobe -v 8814auand got the below
insmod /lib/modules/4.4.0-59-generic/kernel/drivers/net/wireless/8814au.ko DMESG shows this
[4188.649295] rtl8814au 3-2.4.3:1.0 wlx2c4d5404a218: renamed from wlanat this point I clicked the panel wifi icon and had two adapters. turned off the internal one (laptop) and connected with the new one. The adapter name was blank when typing in the password. Just ran speedtest.net and pulled 188 down and 53 up (Mbps). Was pulling about 45 down and 15 up before the new adapter. Hope this helps!
6This worked on Ubuntu 18.04 LTS:
On a good eduroam WiFi network, I was getting speeds over 100 Mbps.
But I've upgraded to 20.04, after reinstalling 18.04 after I accidentally deleted and overwrote my home directory, and trying to install it now so I'll update this answer soon.