Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

Netgear A7000 on Ubuntu 16.04 not working

Writer Mia Lopez

output from lsusb:

Bus 002 Device 004: ID 0846:9054 NetGear, Inc. 

and from iwconfig:

lo no wireless extensions.
enp0s25 no wireless extensions.

Im new to linux and currently tethering connection from my windows desktop any help is appreciated

3 Answers

I suggest that you get a temporary working internet connection by ethernet, tether or whatever means possible. Open a terminal and do:

sudo apt-get update
sudo apt-get install git dkms
git clone
sudo dkms add ./rtl8814au
sudo dkms build -m rtl8814au -v 4.3.21
sudo dkms install -m rtl8814au -v 4.3.21

Reboot with the device inserted and your wireless should be working.

4

I used the answer above for 18.04 as well. Had to create an account for GitHub first. sudo apt-get update sudo apt-get install git dkms git clone ( will ask for username and password) sudo dkms add ./rtl8814au sudo dkms build -m rtl8814au -v 4.3.21 sudo dkms install -m rtl8814au -v 4.3.21

That solution didn't work for me. But after the installation of realtek 802.11ac driver netgear A7000 works fine now. (Ubuntu 20.04.1 LTS)

The steps are on this blog post

The driver is from this Kali Linux repository

Simply download the latest .deb package for the driver from there, and install using a command like this (depending on the version you download) in the same directory as the downloaded file: sudo apt install ./realtek-rtl88xxau-dkms_5.6.4.2~git20200916-0kali1_all.deb (tip: type realtek and then press tab to get the full name!).

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy