Ubuntu TP-Link T3U AC1300 USB 3.0 DKMS instalace ovladače

Manual DKMS installation

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

Or better way:
git clone https://github.com/cilynx/rtl88x2bu.git
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

USB 3.0 Support

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

Debug

Set debug log use echo 5 > /proc/net/rtl88x2bu/log_level or modprobe 88x2bu rtw_drv_log_level=5