NETIS WF2120 Wifi Adapter Drops Signal Within Seconds

11,760

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.

Share:
11,760

Related videos on Youtube

TheForgottenArchitect
Author by

TheForgottenArchitect

I just like making things in general.

Updated on September 18, 2022

Comments

  • TheForgottenArchitect
    TheForgottenArchitect over 1 year

    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?

  • TheForgottenArchitect
    TheForgottenArchitect over 9 years
    The internet adapter isn't detected at all anymore. I copy/pasted all the commands, in order, into the terminal. However, I did it while the adapter was inside but disabled. How bad did I mess up? Do I NEED to detatch ethernet to see the wifi adapter detected?
  • TheForgottenArchitect
    TheForgottenArchitect over 9 years
    NVM, redid with it unplugged and all is well. Thanks.
  • Meezaan-ud-Din
    Meezaan-ud-Din over 8 years
    May God bless you!
  • HackerBaloo
    HackerBaloo about 8 years
    This worked fine in 15.10 today, I just had to change to : sudo dkms install 8192cu/1.10
  • Nearoo
    Nearoo almost 8 years
    Works on ubuntu 16.04. Thank you!
  • Tomen
    Tomen about 6 years
    this fix worked for me. Though, the Github page says this driver is deprecated since Linux 4.4 which introduced its own fixed driver.