problems with Realtek RTL8188ee on 14.04

Solution 1:

Larry Finger, kernel maintainer, has a github repository with an improved driver. Hopefully it will be merged soon. Until then:

sudo apt-get install build-essential linux-headers-generic git dkms
git clone http://github.com/lwfinger/rtlwifi_new.git
cd /path/to/rtlwifi_new
make
sudo modprobe -rv rtl8188ee
sudo make install
sudo modprobe -v rtl8188ee

If you're doing this over your current wifi connection and the last step fails, reboot and everything should work.

A brief explanation of the above steps as requested:

  1. Use sudo apt-get to install what is nessesary to build the driver.

  2. Use git to clone the github repository. See man git for more info.

  3. Use cd to change directory to wherever you cloned the repository to. You'll need to be in that directory to build it. For example: cd ~/stuff/rtlwifi_new in my case.

  4. Use make to build the driver.

  5. Use sudo modprobe -rv to unload the current driver.

  6. Use sudo make install to install the new driver.

  7. Use sudo modprobe -v to load the new driver.