I'm using Ubuntu 14.04 LTS. Basically, I can load like three webpages and then the signal drops. It still shows I'm connected with 4/5 bars or whatever you'd like to call them, but none of my traffic gets through. Later the night I was testing it, my router crashed. Thoughts?
Asked
Active
Viewed 1.2k times
2 Answers
11
The driver rtl8192cu is notoriously unstable. There is a fix. Please disconnect your wireless connection (unplug the USB adapter that contains the Realtek chipset), and temporarily connect to the internet by means of an ethernet cable or by means of another wireless chipset that does function well.
Now install some applications for building the right driver via a terminal:
sudo apt-get install linux-headers-generic build-essential dkms git
Now download the source code of the driver via a terminal:
git clone https://github.com/pvaret/rtl8192cu-fixes.git
Set it up as a DKMS module via a terminal:
sudo dkms add ./rtl8192cu-fixes
Build and install the new driver via a terminal:
sudo dkms install 8192cu/1.10
Refresh the module list via a terminal:
sudo depmod -a
Blacklist the faulty driver via a terminal:
sudo -i
echo "blacklist rtl8192cu" >> /etc/modprobe.d/blacklist.conf
exit
Detach the ethernet and reboot; the wireless should be working much better now.
mikewhatever
- 33,013
chili555
- 61,330
0
Here's what worked for me:
sudo apt-get install git build-essential linux-headers-generic dkms
git clone https://github.com/dz0ny/rt8192cu.git --depth 1
cd rt8192cu
sudo make install
Eric Carvalho
- 55,453