I installed the following driver for an external wireless usb adapter from this page:
But the adapter is still unrecognized. How do I get it to be recognized?
The driver is rt2800usb
lsusb
Bus 002 Device 010: ID 7392:a812 Edimax Technology Co., Ltd
uname -r
4.13.0-37-generic 1 1 Answer
I compiled the version you built and it doesn't cover your exact device, 7392:a812. I suggest you remove it:
cd rtl8812AU
sudo make uninstallNext, to avoid any confusion in the future, remove it entirely:
cd ..
rm -rf rtl8812AUNow, let's build a correct driver:
sudo apt update
sudo apt install git
git clone
sudo dkms add ./rtl8812au
sudo dkms build -m rtl8812au -v 4.2.2
sudo dkms install -m rtl8812au -v 4.2.2Reboot and tell us if your wireless is working.
You may be required to turn off Secure Boot in the UEFI or BIOS.
1