Last active
August 20, 2017 10:10
-
-
Save westonal/2e00db8634df27606e7eac7db8b6fcf8 to your computer and use it in GitHub Desktop.
Wifi of rtl8192cu chipset devices has bad drivers by default - instructions of https://github.com/pvaret/rtl8192cu-fixes.git in script
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 | |
#stop script on first error | |
set -e | |
#Pre-requisits | |
sudo apt-get update | |
sudo apt-get -y install git build-essential dkms #linux-headers-generic | |
#Clone this repository: | |
git clone https://github.com/pvaret/rtl8192cu-fixes.git | |
#Set it up as a DKMS module: | |
sudo dkms add ./rtl8192cu-fixes | |
#Build and install it: | |
sudo dkms install 8192cu/1.10 | |
#Refresh the module list: | |
sudo depmod -a | |
#Ensure the native (and broken) kernel driver is blacklisted: | |
sudo cp ./rtl8192cu-fixes/blacklist-native-rtl8192.conf /etc/modprobe.d/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Then reboot.