Last active
August 11, 2024 03:12
-
-
Save danilogco/40b4571c77667b8130e4d10a605d93ec to your computer and use it in GitHub Desktop.
TP-Link Archer T4U v3 - Ubuntu 21.04
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
#!/bin/bash | |
# tested 5.11.0-16-generic #17-Ubuntu SMP Wed Apr 14 20:12:43 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux | |
# installing dkms and git | |
sudo apt update | |
sudo apt install -y dkms git | |
# cloning driver repository | |
mkdir ~/src | |
cd ~/src | |
git clone https://github.com/morrownr/88x2bu-20210702.git | |
cd ~/src/88x2bu | |
# building and installing, reboot required | |
sudo ./install-driver.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the update!