Last active
April 23, 2024 19:35
-
-
Save dapize/b5383832cd4d30523cd340dc6f915eef to your computer and use it in GitHub Desktop.
TP-Link AC1300 driver installer Linux Debian
This file contains 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 | |
sudo apt install -y git | |
git clone https://github.com/cilynx/rtl88x2bu.git | |
cd rtl88x2bu | |
VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf) | |
sudo apt install -y rsync | |
sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER} | |
sudo apt install -y dkms | |
sudo dkms add -m rtl88x2bu -v ${VER} | |
sudo dkms build -m rtl88x2bu -v ${VER} | |
sudo dkms install -m rtl88x2bu -v ${VER} | |
sudo modprobe 88x2bu | |
echo "ready! , is done, go to reboot the PC" |
Thanks!
silverswan85 did u succeeded? Have the same problem also
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi people.
I run this and and the end I got this error:
sudo dkms install -m rtl88x2bu -v ${VER}
The kernel is be built without module signing facility, modules won't be signed
Building module:
Cleaning build area...
'make' -j 4 KVER=5.15.44-Re4son-v7l+ src=/usr/src/rtl88x2bu-5.8.7.1...(bad exit status: 2)
Error! Bad return status for module build on kernel: 5.15.44-Re4son-v7l+ (armv7l)
Consult /var/lib/dkms/rtl88x2bu/5.8.7.1/build/make.log for more information.
I have the TP_link AC1300 and cant make it work. Your help would be much appriciated