0

I am unable to connect through an Ethernet cable at the moment so I tried to install the drivers for my TP-link archer T4UH V1 but it’s very confusing as I am completely new to Linux. When I follow the commands from the instruction manual it says syntax error even when directly copying the command onto the terminal.

Can anyone help me to install this driver?

Zanna
  • 72,312

1 Answers1

0

Please download this file on some other computer and transfer it to the desktop of the subject computer: https://github.com/abperiasamy/rtl8812AU_8821AU_linux/archive/master.zip Right-click it and select 'Extract Here.' Now, in a terminal:

cd ~/Desktop/rtl8812AU_8821AU_linux-master
make
sudo make install
sudo modprobe rtl8812au

Now that we have the wireless working correctly, we'll refine this a bit.

sudo apt-get update
sudo apt-get install dkms
cd ~/Desktop/rtl8812AU_8821AU_linux-master
sudo cp -R . /usr/src/rtl8812AU_8821AU_linux-1.0
sudo dkms add -m rtl8812AU_8821AU_linux -v 1.0
sudo dkms build -m rtl8812AU_8821AU_linux -v 1.0
sudo dkms install -m rtl8812AU_8821AU_linux -v 1.0

Credit: How to install TP-LINK Archer T4U driver?

Abdulla
  • 117