Created
June 10, 2020 07:53
-
-
Save WillSams/e847863b69cf4352d377c923626c6063 to your computer and use it in GitHub Desktop.
Install tp-link AC1300 High Gain Wireless (T4U version 3) on Debian
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 | |
git clone https://github.com/cilynx/rtl88x2BU_WiFi_linux_v5.3.1_27678.20180430_COEX20180427-5959 | |
cd rtl88x2BU* | |
make | |
sudo bash -c "make install" | |
sudo bash -c "modprobe 88x2bu" | |
sudo bash -c "apt install linux-headers-$(uname -r)" | |
sudo bash -c "cp -R . /usr/src/rtl88x2bu-5.3.1" | |
sudo bash -c "dkms add -m rtl88x2bu -v 5.3.1" | |
sudo bash -c "dkms build -m rtl88x2bu -v 5.3.1" | |
sudo bash -c "dkms install -m rtl88x2bu -v 5.3.1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment