Ubuntu – Realtek rtl8192ce wireless slow intermittent access

realtekrtl8192cetoshibawireless

I am a noob to linux and could use some help. After much searching and reading I have been able to connect my Toshiba C665-S5177 to the internet. To do so I had to install the Realtek drivers for wireless card rtl8192ce from the Realtek website.

The method of installation followed the ReadMe file include with the driver…

make clean    
sudo su    
make    
make install    
reboot

However, my internet connection is very slow and is continuously dropping and reconnecting.

Advice from some previous posts suggested running the wireless info script. The results from the script are linked here.

The script was run while attached to the internet via ethernet, which works well. If you would like me to run the script again while connected to wireless I can do that.

Best Answer

Late answer but hopefully helps some people...

I have a Thinkpad x121e which uses this driver (rtl8192ce) and when I installed Ubuntu 14.04 I kept having WiFi disconnects, about every 15 minutes.

From a post on the Arch Boards I found a fix. The problem is apparently with powersaving features of the driver, specifically ips (link power save) and fwlps (presumably firmware power save). These are enabled by default.

The fix is to create a file /etc/modprobe.d/rtl8192ce.conf and add this text to it:

options rtl8192ce ips=0 fwlps=0

You will need to be root to do this. Then reboot and hopefully you'll have a stable WiFi connection. (Incidentally I'm using a newer kernel from kernel.org but I don't think that is relevant/important to this fix).