Last active
August 5, 2022 09:23
-
-
Save goforbroke1006/e7bec8d975b23cb292fcdffd250a4a92 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# https://community.tp-link.com/en/home/forum/topic/184118 | |
# Archer T2U Plus driver for Linux Ubuntu/Rasbian | |
sudo apt update | |
sudo apt install dkms git | |
sudo apt install build-essential libelf-dev linux-headers-$(uname -r) | |
cd ~ | |
[ -d ./rtl8812au ] || git clone https://github.com/aircrack-ng/rtl8812au.git | |
( | |
cd rtl8812au | |
git pull | |
sudo make dkms_remove || true # uninstall old | |
sudo make dkms_install | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment