I've noticed a lot of people having similar issues with finding a driver for NETGEAR A6100 AC600 WiFi Adapter.
I've been struggling with a lot of the threads and drivers posted on github. Many of the ones listed are referencing a rtl8812au driver while I believe my particular one is a rtl8811au.
I ran the wireless info script that is floating around and these are my results https://pastebin.ubuntu.com/p/XDnGNYcKPT/
I did get this driver to make and install but it doesn't seem to do anything. https://github.com/diederikdehaas/rtl8812AU I still don't have any wireless connections popping up.
Any help on this matter would be much appreciated..
The git repo recommended here doesn't seem to work with Linux kernel version >= 5.0, so this install uses a similar repo that has been updated for newer kernels. (Check your kernel version if you don't know with
uname -r
.) In fact, following the above guide was probably the cause of the otherwise inexplicable total system freezes I experienced. The following install procedure usesdkms
(sudo apt-get install dkms
), but, as theREADME
explains (https://github.com/gnab/rtl8812au), you can also set up this driver similar to the above. Anyway, here's the install usingdkms
:Check with:
sudo dkms status
Automatically load at boot with:
echo 8812au | sudo tee -a /etc/modules
.Adapted from: https://www.learningpenguin.net/2018/01/30/install-realtek-rtl8812au-wifi-driver-linux/ and the README of the repo.
The driver you compiled doesn't cover your device at all. You can confirm it with:
Where '9052' is the last part of your usb.id:
The command will come back blank.
Let's remove it. In the terminal, navigate to the location of the file you downloaded, for an example, Downloads:
Now let's download a better file:
Check:
The terminal should return your device ID:
Reboot and you should be all set.