Introduction

One thing that Windows does do very well is drivers. Most things you may connect to a PC will automagically work. Linux also generally has good out of box support for a wide range of devices but in the case of my 5Ghz capable wireless card, my PC simply did not even see the connected USB wireless adaptor. The driver required for rtl88x2bu WiFi adaptors however have been made available for easy install. Thanks to those who go the lengths to make these installs an easy process.

Solution

Download the latest repository:

git clone https://github.com/cilynx/rtl88x2bu

Run the following code to install the wireless driver on your PC

cd rtl88x2bu
VER=$(sed -n 's/\PACKAGE_VERSION="\(.*\)"/\1/p' dkms.conf)
sudo rsync -rvhP ./ /usr/src/rtl88x2bu-${VER}
sudo dkms add -m rtl88x2bu -v ${VER}
sudo dkms build -m rtl88x2bu -v ${VER}
sudo dkms install -m rtl88x2bu -v ${VER}
sudo modprobe 88x2bu

Viola! Your wireless adaptor will now be recognised and working.

Install Realtek (rtl88x2bu) Wireless Drivers Linux Mint
Tagged on:             

13 thoughts on “Install Realtek (rtl88x2bu) Wireless Drivers Linux Mint

  • 3rd January 2021 at 22:37
    Permalink

    Thank you! These commands worked perfectly for me on Ubuntu 20.10 with a BrosTrend AC1200 AC3L USB wifi card.

    Cheers,

    Rob

    Reply
  • 9th December 2021 at 03:56
    Permalink

    At last, an installation that works, first time on Linux Mint 20.02 .

    Many thanks

    Tom

    Reply
  • 8th May 2022 at 06:22
    Permalink

    Thank you very much! I worried about that so much.
    Your solution is very helpful and useful for me.

    Reply
  • 24th October 2022 at 11:56
    Permalink

    thanks for sharing this awesome code. i¨ve managed to instal it on linux mint and now my dongle works.
    GREAT!!!!

    Reply
  • 7th November 2022 at 21:14
    Permalink

    Thank you very much!

    Reply
  • 12th December 2022 at 15:36
    Permalink

    Yyeeaaah !!
    It works for me either !!
    Thank you so so so so much !
    Gaspar DG

    Reply
  • 14th January 2023 at 20:24
    Permalink

    Been trying to get this to work for so long from so many web sites. You did it perfectly! All the wasted time!

    Reply
  • 19th March 2023 at 16:21
    Permalink

    worked for me after Mint 21 Vanessa upgrade. Thank You

    Reply
  • 9th July 2023 at 12:51
    Permalink

    I had been trying for a long time but it didn’t work… thank you very much for your help, now it’s working correctly, THANK YOU

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.