archer-t2u-plus-linux
archer-t2u-plus-linux copied to clipboard
TP-Link Archer T2U Plus / AC600 High Gain USB Wifi Adapter Review & Driver installation Guide for various platforms.
TP-Link Archer T2U Plus a.k.a AC600 High-Gain
TP-Link Archer T2U Plus a.k.a AC600 High Gain is a very affordable dual band wireless adapter compatible with kali linux and supports monitor mode , soft AP mode,packet injection etc. it supports both 2.4 GHz and 5GHz band and has a 5dBi Antenna for better signal reception.2357:0120
Where to buy
:point_right: Amazon
:point_right: Flipkart
Driver for Debian Based Linux Distros (Ubuntu/Kali Linux)(x86_64)
- Update the package information :
sudo apt update
- Install
dkmsandgit:
sudo apt install dkms git
- Install Build Dependencies :
sudo apt install build-essential libelf-dev linux-headers-$(uname -r)
- Download the Driver files using
git:
git clone https://github.com/aircrack-ng/rtl8812au.git
- Navigate to the Downloaded directory :
cd rtl88*
- Install the Driver
sudo make dkms_installif the installation is aborted , execute this command '''sudo dkms remove 8812au/5.6.4.2_35491.20191025 --all''' , if errors pop up '''Usage: remove/ --all'''
- Check the wireless interfaces by typing
iwconfig.
:point_right: Change/Rename Network Interface
Driver for Raspberry Pi (Raspbian OS / Kali)(ARM)
- Update the package information :
sudo apt update
- Install
dkmsandgit:
sudo apt install dkms git
- Install Build Dependencies :
For Raspbian OS
sudo apt-get install raspberrypi-kernel-headers
For Kali for ARM
sudo apt-get install build-essential libelf-dev kalipi-kernel-headers
- Download the Driver files using
git:
git clone https://github.com/aircrack-ng/rtl8812au.git
- Navigate to the Downloaded directory :
cd rtl88*
For Raspberry (RPI)
- Then run this step to change platform in Makefile, For RPI 1/2/3/ & 0/Zero:
sed -i 's/CONFIG_PLATFORM_I386_PC = y/CONFIG_PLATFORM_I386_PC = n/g' Makefile
sed -i 's/CONFIG_PLATFORM_ARM_RPI = n/CONFIG_PLATFORM_ARM_RPI = y/g' Makefile
But for RPI 3B+ & 4B you will need to run those below which builds the ARM64 arch driver:
sed -i 's/CONFIG_PLATFORM_I386_PC = y/CONFIG_PLATFORM_I386_PC = n/g' Makefile
sed -i 's/CONFIG_PLATFORM_ARM64_RPI = n/CONFIG_PLATFORM_ARM64_RPI = y/g' Makefile
In addition, if you receive an error message about unrecognized command line option ‘-mgeneral-regs-only’ (i.e., Raspbian Buster), you will need to run the following commands, then retry building and installing:
export ARCH=arm
sed -i 's/^MAKE="/MAKE="ARCH=arm\ /' dkms.conf
- Install the Driver
sudo make dkms_install
- Check the wireless interfaces by typing
iwconfig.
:point_right: Change/Rename Network Interface
Uninstall Driver in Linux
-
check the module name and version using the command
sudo dkms status.$ dkms status 8812au, 5.6.4.2_35491.20191025, 5.10.63+, armv6l: installed rtl8188fu, 1.0, 5.10.63+, armv6l: installed.``` -
here module name is
8812auand module version is5.6.4.2_35491.20191025. -
use
sudo dkms remove <module>/<module-version>.$ sudo dkms remove 8812au/5.6.4.2_35491.20191025 --all Deleting module version: 5.6.4.2_35491.20191025 completely from the DKMS tree. Done. -
delete this file using
sudo rm -rf /var/lib/dkms/8812au/.
