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.
LinuxMint安装无线网卡驱动
git clone https://github.com/cilynx/rtl88x2bu
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
标签:Wireless,VER,USB,sudo,网卡,rtl88x2bu,dkms
From: https://www.cnblogs.com/mufeng3421/p/16896545.html