Skip to content

Instantly share code, notes, and snippets.

@th3terrorist
Created October 17, 2023 20:13
Show Gist options
  • Save th3terrorist/0f17ac4c7392e682b5420d941b8dde6a to your computer and use it in GitHub Desktop.
Save th3terrorist/0f17ac4c7392e682b5420d941b8dde6a to your computer and use it in GitHub Desktop.
T3U TPLink Wi-Fi Adapter driver installer
#!/bin/bash
git clone https://github.com/cilynx/rtl88x2bu.git
cd rtl88x2bu
VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf)
sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER}
sudo dkms add -m rtl88x2bu -v ${VER}
sudo dkms build -m rtl88x2bu -v ${VER}
sudo dkms install -m rtl88x2bu -v ${VER}
sudo modprobe 88x2bu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment