Installing Wireless Card Drivers
To install drivers for a specific wireless card we need to upgrade the and update our linux machine as follows:
1
2
3
4
5
6
7
8
9
sudo apt update && sudo apt upgrade
sudo reboot
sudo apt install -y linux-headers-$(uname -r) build-essential bc dkms git libelf-dev rfkill iw
mkdir -p ~/src
cd ~/src
git clone https://github.com/morrownr/8814au.git
cd ~/src/8814au
sudo ./install-driver.sh
sudo reboot
The 3rd command won’t work until the first reboot.