Created
October 1, 2015 21:48
-
-
Save cagataycali/84b6c4fc46dada43b698 to your computer and use it in GitHub Desktop.
Ubuntu
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
First of all, ensure you have the necessary prerequisites: | |
sudo apt-get install linux-headers-generic build-essential dkms git | |
Clone the updated driver with git: | |
git clone https://github.com/pvaret/rtl8192cu-fixes.git | |
Set it up as a DKMS module: | |
sudo dkms add ./rtl8192cu-fixes | |
Build and install the driver, you may need check the version here (e.g. 1.9 may change): | |
sudo dkms install 8192cu/1.9 | |
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/ | |
Let's not take any chances. Instruct Ubuntu to load the new driver when it starts up. | |
echo 8192cu | sudo tee -a /etc/modules | |
Reboot. | |
You're done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment