Wifi adapter - REALTEK RTL8812BU setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
echo "-------------------------------------------------" | |
echo "<-- REALTEK RTL8812BU Driver setup - Hans -->" | |
echo "-------------------------------------------------" | |
echo " <-- Update and install pkgs --> " | |
sudo apt-get update | |
sudo apt-get install -y dkms git build-essential | |
echo " <-- Clone driver repo --> " | |
mkdir -p ~/build && cd ~/build | |
git clone https://github.com/morrownr/88x2bu-20210702.git | |
cd 88x2bu-20210702/ | |
echo " <-- Install driver --> " | |
sudo ./install-driver.sh | |
echo " To uninstall driver, run ./remove-driver.sh and reboot system" | |
echo "-------------------------------------------------" | |
echo "<-- REALTEK RTL8812BU Driver setup Done -->" | |
echo "-------------------------------------------------" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment