0

I need instructions to install an Edimax EW-7833UAC USB Wi-Fi adapter in 18.04 LTS.

Melebius
  • 11,431
  • 9
  • 52
  • 78
  • 3
    Well, easy to find with keyword = edimax ew-7833uac linux. ... ... The first hit is https://edimax.freshdesk.com/support/solutions/articles/14000074625-how-to-install-ew-7833uac-in-linux-running-kernel-higher-than-v4-4 – Knud Larsen May 09 '18 at 05:40
  • I have "Comfast 917AC 2.4G+5GHz Performance Dual Band AC 1750Mbps Wireless N WIFI USB Adapter - Chipset RTL8814AU" = works great with the drivers above. – Rafał Myszkowski Jul 27 '18 at 16:35

1 Answers1

4
sudo apt-get update && sudo apt-get install git dkms
git clone https://github.com/zebulon2/rtl8814au.git
cd rtl8814au

Open dkms.conf with your preferred text editor, e.g.

nano dkms.conf

Replace line 1 MAKE="'make'" with

MAKE="'make' all KVER=${kernelver}"

save the file and and exit your text editor, then

cd ..
sudo dkms add ./rtl8814au
sudo dkms install rtl8814au/4.3.21

and reboot.

Zanna
  • 70,465
Jeremy31
  • 12,602
  • 10
  • 58
  • 114