Just found the solution to install my adapter, i have a TP-LINK AC600 wireless Realtek RTL8811AU [Archer T2U Nano]
Go go your umbrel page http://umbrel.local and open the settings:
there you will find ‘Advanced settings’
open the terminal:
-
Identify Your Wireless Adapter:
- Use the
lsusb
command to check the details of your wireless adapter:lsusb
- Use the
-
Install Dependencies:
- Update package lists:
sudo apt update
- Install necessary tools:
sudo apt install dkms git
- Update package lists:
-
Clone Driver Repository:
- Clone the repository containing the drivers:
git clone https://github.com/aircrack-ng/rtl8812au.git
- Navigate to the driver directory:
cd rtl8812au
- Clone the repository containing the drivers:
-
Compile and Install Driver:
- Compile the driver:
sudo make
- Install the driver:
sudo make install
- Compile the driver:
-
Set the Module:
- Update module dependencies:
sudo depmod
- Load the module:
sudo modprobe 88XXau
- Update module dependencies:
-
Verify Driver Installation:
- Check if the driver is loaded:
lsmod | grep 88XXau
- View system log for any relevant messages:
dmesg | tail
- Check if the driver is loaded:
-
Install Additional Tools:
- Install wireless tools:
sudo apt install wireless-tools iw
- Install wireless tools:
-
Check Wi-Fi Devices:
- List available Wi-Fi networks:
sudo nmcli device wifi list
- List available Wi-Fi networks:
-
Connect to Wi-Fi Network:
- Connect to your Wi-Fi network (replace
YOURWIFINAME
andYOURWIFIPASSWORD
with your network name and password):sudo nmcli device wifi connect YOURWIFINAME password 'YOURWIFIPASSWORD'
- Connect to your Wi-Fi network (replace
-
Verify Connection:
- Check if your Wi-Fi is connected:
ip a
- Example:
wlx5ca7e777degen7: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 2312 qdisc mq state UP group default qlen 1000
inet 192.168.1.99/24 brd 192.168.1.255 scope global dynamic noprefixroute wlx5ca6e626dea4
inet6 2001:0db8:e777:0000:0000:8a2e:0370:7334/64 scope global dynamic noprefixroute
inet6 fe80::c0de:god7:fa1c:0c0a/64 scope link noprefixroute - Check if your Wi-Fi is connected: