Skip to content

Instantly share code, notes, and snippets.

@nickavem
Last active March 28, 2024 00:21
Show Gist options
  • Star 28 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save nickavem/3b8178ecd19eddadb85e6b8649e8a490 to your computer and use it in GitHub Desktop.
Save nickavem/3b8178ecd19eddadb85e6b8649e8a490 to your computer and use it in GitHub Desktop.
How to Install the Netgear A7000 (RTL8812AU/21AU/14AU) Linux Wifi Drivers.

Sources: aircrack-ng/rtl8812au, aircrack-ng/rtl8814au

How to Install the Netgear A7000 (RTL8812AU/21AU/14AU) Linux Wifi Drivers.

Note: This guide is purposefully simple. If you would like more information about what exactly each command is doing, try:

man `the command in question`

or go to the respective source repositories as mentioned above.

IF YOU ARE HAVING ISSUES DISABLE SECURE BOOT IN YOUR MOTHERBOARD'S SETTINGS

Install Package Dependencies

Debian GNU/Linux or Debian Based Distros (Ubuntu, Linux Mint, ElementaryOS, Pop_OS, etc.)

Run the following commands:

sudo apt update && sudo apt upgrade
sudo apt install dkms git build-essential libelf-dev linux-headers-`uname -r`

Then reboot your system.

Fedora Linux

This may work for CentOS/RHEL + EPEL, but I have not tested

Right now I know of no way to get this working on silverblue/rpm-ostree.

sudo dnf upgrade
sudo dnf install dkms make automake gcc gcc-c++ kernel-devel elfutils-libelf-devel kernel-headers git

Then reboot your system.

Build and Install the First Driver

git clone -b v5.6.4.2 https://github.com/aircrack-ng/rtl8812au.git
cd rtl*
sudo make dkms_install

Then reboot your system. Rebooting may not be necessary here but I like to be safe

Build and Install the Second Driver

git clone https://github.com/aircrack-ng/rtl8814au.git
cd rtl8814au
sudo make dkms_install

One Final Reboot!

You should just be able to plug and play now. If you are still having issues, or have any questions, feel free to send a PR/Issue to me or the upstream projects!

Quick Problem Fix

If you are having any issues after something like a kernel update, this quick one-liner may be enough to fix it:

cd ~/rtl8812au && sudo make dkms_remove && git pull && sudo make dkms_install && cd ~/rtl8814au && sudo make dkms_remove && git pull && sudo make dkms_install && sudo reboot

(Updating your system first may also be smart)


-\ nickavem

@MGJ1970
Copy link

MGJ1970 commented Jun 5, 2023

LifeSaver - Can you assist with this model please
Netgear Nighthawk AXE3000 / A8000.
Thanks in advance.

@Locknut64
Copy link

Worked on linux mint
nighthawk ac1900 usb wifi adaptor
Also works with usb extenstion + mag mount
Lifesaver! Thanks for this.

@yuri-mascarenhas
Copy link

Just installed in a fresh Kubuntu 22.04.3 and it's working 100%
It was really easy and straightforward, thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment