RTL8192EU icon indicating copy to clipboard operation
RTL8192EU copied to clipboard

Driver auto-initialization

Open joaquinodz opened this issue 5 years ago • 3 comments

I've noticed that even after installing the driver and applying the modprobe command, I was still using the generic network driver rtl8xxxu

So, I did a little research and I found THE SOLUTION

I leave you the quote:

  1. Distributions based on Debian & Ubuntu have RTL8XXXU driver present & running in kernelspace. To use our RTL8192EU driver, we need to blacklist RTL8XXXU.

    $ echo "blacklist rtl8xxxu" | sudo tee /etc/modprobe.d/rtl8xxxu.conf;
    
  2. Force RTL8192EU Driver to be active from boot.

    $ echo -e "8192eu\n\nloop" | sudo tee /etc/modules;
    
  3. Update changes to Grub & initramfs

    $ sudo update-grub; sudo update-initramfs -u;
    
  4. Reboot system to load new changes from newly generated initramfs.

    $ systemctl reboot -i;
    
  5. Check that your kernel has loaded the right module:

    $ sudo lshw -c network;
    

You should see the line driver=8192eu

Of course, it'd be better to automatize this in, I don't know ... a bash script?

joaquinodz avatar Jun 23 '19 03:06 joaquinodz

EDIT: Removed Step 8 because the the Power Management feature and the USB Auto-Suspend feature is already disabled via source code.

joaquinodz avatar Jun 23 '19 04:06 joaquinodz

I'll preface this by saying I'm a COMPLETE noob, started using my first GNU/Linux distro a few weeks ago after using Windows for around 15 years. I had no idea what was wrong with my internet connection. I searched and searched for a fix but nothing worked.

Finally, I stumbled upon this and decided to give it a try. As it turns out, my PC was still using the same generic network driver you mentioned above.

I have no idea what I did, but I followed the instructions you provided and it worked like a charm. Thank you!

DraconianDeath avatar Oct 05 '19 23:10 DraconianDeath

I'll preface this by saying I'm a COMPLETE noob, started using my first GNU/Linux distro a few weeks ago after using Windows for around 15 years. I had no idea what was wrong with my internet connection. I searched and searched for a fix but nothing worked.

Finally, I stumbled upon this and decided to give it a try. As it turns out, my PC was still using the same generic network driver you mentioned above.

I have no idea what I did, but I followed the instructions you provided and it worked like a charm. Thank you!

You're welcome!

joaquinodz avatar Oct 06 '19 14:10 joaquinodz