Skip to content

Instantly share code, notes, and snippets.

@hanskw4267
Last active January 18, 2022 08:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hanskw4267/548e3d4ee9811f486c196d9acb50e70c to your computer and use it in GitHub Desktop.
Save hanskw4267/548e3d4ee9811f486c196d9acb50e70c to your computer and use it in GitHub Desktop.
Wifi adapter - REALTEK RTL8812BU setup
#! /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