Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
360controller | 6,492 | 10 months ago | 270 | gpl-2.0 | C++ | |||||
TattieBogle Xbox 360 Driver (with improvements) | ||||||||||
Usb Serial For Android | 4,224 | 22 days ago | 30 | mit | Java | |||||
Android USB host serial driver library for CDC, FTDI, Arduino and other devices. | ||||||||||
Horndis | 2,696 | 8 months ago | 90 | other | C++ | |||||
Android USB tethering driver for Mac OS X | ||||||||||
Os | 2,557 | 2 years ago | 21 | gpl-3.0 | C | |||||
Minoca operating system | ||||||||||
Vigembus | 2,409 | 20 days ago | 9 | bsd-3-clause | C++ | |||||
Windows kernel-mode driver emulating well-known USB game controllers. | ||||||||||
Libfreenect2 | 1,961 | 3 months ago | 146 | C++ | ||||||
Open source drivers for the Kinect for Windows v2 device | ||||||||||
Liquidctl | 1,897 | 1 | 6 days ago | 35 | July 26, 2023 | 59 | gpl-3.0 | Python | ||
Cross-platform CLI and Python drivers for AIO liquid coolers and other devices | ||||||||||
Circle | 1,592 | 8 days ago | 12 | gpl-3.0 | C | |||||
A C++ bare metal environment for Raspberry Pi with USB (32 and 64 bit) | ||||||||||
Libwdi | 1,500 | 2 months ago | 3 | gpl-3.0 | C | |||||
Windows Driver Installer library for USB devices | ||||||||||
Micronucleus | 1,450 | a year ago | 13 | other | C | |||||
ATTiny usb bootloader with a strong emphasis on bootloader compactness. |
Current Driver Version: 5.13.1 Support Kernel: 2.6.24 ~ 6.4 (with unofficial patches)
Linux in-tree rtw8822bu driver is working in process, check this patchset.
Official release note please check ReleaseNotes.pdf
Note: if you believe your device is RTL8812BU or RTL8822BU but after loaded the module no NIC shows up, the device ID maybe not in the driver whitelist. In this case please submit a new issue with lsusb
result, and your device name, brand, website, etc.
Starting from Linux 5.18, some distributions have added experimental RTW88 USB support (include RTW88x2BU support). It is not yet stable but if it works well on your system, then you no longer need this driver. But if it doesn't work or is unstable, you need to manually blacklist it because it has a higher loading priority than this external drivers.
Check the currently loaded module using lsmod
. If you see rtw88_core
, rtw88_usb
, or any name beginning with rtw88_
then you are using the RTW88 driver.
If you see 88x2bu
then you are using this RTW88x2BU driver.
To blacklist RTW88 8822bu USB driver, run the following command:
echo "blacklist rtw88_8822bu" > /etc/modprobe.d/rtw8822bu.conf
And reboot your system.
And more.
build-essential
for Debian/Ubuntu, base-devel
for Arch, etc.make clean
make
make KSRC=/lib/modules/YOUR_KERNEL_VERSION/build
sudo make install
sudo make uninstall
git clone "https://github.com/RinCat/RTL88x2BU-Linux-Driver.git" /usr/src/rtl88x2bu-git
sed -i 's/PACKAGE_VERSION="@PKGVER@"/PACKAGE_VERSION="git"/g' /usr/src/rtl88x2bu-git/dkms.conf
dkms add -m rtl88x2bu -v git
dkms autoinstall
You can try use modprobe 88x2bu rtw_switch_usb_mode=1
to force the adapter run under USB 3.0. But if your adapter/port/motherboard not support it, the driver will be in restart loop. Remove the parameter and reload the driver to restore. Alternatively, modprobe 88x2bu rtw_switch_usb_mode=2
let's it run as USB 2 device.
Notice: If you had already loaded the moduel, use modprobe -r 88x2bu
to unload it first.
If you want to force a given mode permanently (even when switching the adapter across devices), create the file /etc/modprobe.d/99-RTL88x2BU.conf
with the following content:
options 88x2bu rtw_switch_usb_mode=1
Set debug log use echo 5 > /proc/net/rtl88x2bu/log_level
or modprobe 88x2bu rtw_drv_log_level=5