I have installed Realtek RTL88x2BU drivers from Cilynx's GitHub repo using DKMS installation in Ubuntu MATE 19.04 with kernel 5.3.4 (and later 5.3.7)
Drivers worked fine for a week, then suddenly stopped detecting TP-Link Archer T3U AC1300 Wireless USB Adapter altogether. The same adapter works fine with other PC.
This is how drivers were installed:
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
So how could I completely remove kernel modules of all the previous versions (1.1, 5.6.1, etc) for RTL88x2BU? Many thanks.
sudo dkms remove -m 8822bu/1.1 | Error! Invalid number of parameters passed
andsudo dkms uninstall 8822bu/1.1 | Error! Could not locate dkms.conf file | File: /var/lib/dkms/8822bu/1.1/source/dkms.conf does not exist
– Jags Oct 19 '19 at 23:158822bu/1.1
(please note: there's no 'x'), that's alright. Because (1) wireless is working just fine with RTL88x2BU from Cilynx, and (2) in a week or two, I'm gonna go for a clean installation of Ubuntu MATE 19.10 anyway. Thank you so much :) – Jags Oct 19 '19 at 23:178822bu
, try put back its source code in/usr/src/
. For module naming with 'x' , I don't have currently a running Ubuntu to check, I am will be thankful if you could edit my answer to correct it . – user.dz Oct 20 '19 at 08:01