I purchased a tp-link wireless LAN slave unit (hereinafter referred to as wireless LAN), but it seems that it is not compatible with Linux, so I will introduce how to install the driver created by volunteers.
RTL8812AU/21AU Wireless drivers
We will download this driver, so first install Git and dkms from your terminal.
First, install Git
sudo apt install git-all
Then install dkms
sudo apt install dkms
Now you are ready to download the driver.
Download the driver from Github.
git clone https://github.com/aircrack-ng/rtl8812au.git
When you do this, the download will start, so please wait for a while.
When the download is complete, a directory called ``` rtl8812au``` will be created, and it will be downloaded there, so it will remain as it is.
```cd rtl8812au```
To execute.
Then run dkms_install in the moved directory to complete the installation.
```sudo make dkms_install```
If it is not recognized, it will be recognized if you re-stab it or restart it.
see you.
Recommended Posts