tp-link archer t2u (ac600)

Questions about Wi-Fi and other network devices, file sharing, firewalls, connection sharing etc
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
tech86

tp-link archer t2u (ac600)

Post by tech86 »

hi peeps i was just wondering if anyone has got this working in mint 18 yet? i tryed the live usb but doesnt work and im wanting to install mint on my pc but the usb adapter is the only thing stopping me from changing over as its the only wireless adapter i have to use :( thank you
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
deepakdeshp
Level 20
Level 20
Posts: 12334
Joined: Sun Aug 09, 2015 10:00 am

Re: tp-link archer t2u (ac600)

Post by deepakdeshp »

Please verify if it has Linux driver, if nit install kernel 4.14.9 , reboot and test.
If I have helped you solve a problem, please add [SOLVED] to your first post title, it helps other users looking for help.
Regards,
Deepak

Mint 21.1 Cinnamon 64 bit with AMD A6 / 8GB
Mint 21.1 Cinnamon AMD Ryzen3500U/8gb
JeremyB
Level 21
Level 21
Posts: 13841
Joined: Fri Feb 21, 2014 8:17 am

Re: tp-link archer t2u (ac600)

Post by JeremyB »

With the dongle plugged in, in terminal do

Code: Select all

lsusb
Post results
tech86

Re: tp-link archer t2u (ac600)

Post by tech86 »

JeremyB wrote:With the dongle plugged in, in terminal do

Code: Select all

lsusb
Post results
I havent installed mint yet mate will be in a couple of days, is there any documentation on what wifi adapters are supported by mint?
m3318

Re: tp-link archer t2u (ac600)

Post by m3318 »

I successfully compiled and load driver of tp link t2u ac600 in linux mint 19 tara. bellow are steps :D :D :D
disconnect the dongle, you need the temporary internet connection, which i got it form my mobile usb tethering, then run these command in to your terminals one by one.

https://github.com/xtknight/mt7610u-lin ... wifi-fixes
Building
1 sudo apt-get install linux-headers-$(uname -r)
2 sudo apt-get install gcc
3 sudo apt-get install update
4 sudo apt-get install linux-source
5 sudo apt-get install linux-headers-$(uname -r)
6 sudo apt-get install build-essential
7 cd mt7610u-linksys-ae6000-wifi-fixes-master
8 sudo make clean
9 sudo make
10 sudo make install

Building with DKMS

11 sudo apt-get install dkms
12 sudo cp -R . /usr/src/mt7610u_sta-1.0
13 sudo dkms add mt7610u_sta/1.0
14 sudo dkms build mt7610u_sta/1.0
15 sudo dkms install mt7610u_sta/1.0
16 reboot
17 reconnet the adapter
Last edited by m3318 on Wed Nov 14, 2018 10:57 pm, edited 4 times in total.
JeremyB
Level 21
Level 21
Posts: 13841
Joined: Fri Feb 21, 2014 8:17 am

Re: tp-link archer t2u (ac600)

Post by JeremyB »

m3318 wrote: Thu Nov 08, 2018 12:14 pm I successfully compiled and load driver of tp link t2u ac600 in linux mint 19 tara. bellow are steps :D :D :D

https://github.com/xtknight/mt7610u-lin ... wifi-fixes
Building
1 sudo apt-get install linux-headers-$(uname -r)
2 apt-get install update
3 sudo apt-get install update
4 sudo apt-get install linux-source
5 sudo apt-get install linux-headers-$(uname -r)
6 sudo apt-get install build-essential
7 cd mt7610u-linksys-ae6000-wifi-fixes-master
8 sudo make clean
9 sudo make
10 sudo make install

Building with DKMS

11 sudo apt-get install dkms
12 sudo cp -R . /usr/src/mt7610u_sta-1.0
13 sudo dkms add mt7610u_sta/1.0
14 sudo dkms build mt7610u_sta/1.0
15 sudo dkms install mt7610u_sta/1.0
16 reboot
If that github actually does work, better instructions would be

Code: Select all

sudo apt install git dkms build-essential
git clone https://github.com/xtknight/mt7610u-linksys-ae6000-wifi-fixes.git
sudo dkms add mt7610u-linksys-ae6000-wifi-fixes
sudo dkms install mt7610u_sta/1.0
Then check EFI Secure Boot status with

Code: Select all

mokutil --sb-state
Any response other than Secure Boot is enabled should be good
zerocoolroot

Re: tp-link archer t2u (ac600)

Post by zerocoolroot »

m3318 wrote: Thu Nov 08, 2018 12:14 pm I successfully compiled and load driver of tp link t2u ac600 in linux mint 19 tara. bellow are steps :D :D :D

https://github.com/xtknight/mt7610u-lin ... wifi-fixes
Building
1 sudo apt-get install linux-headers-$(uname -r)
2 sudo apt-get install gcc
3 sudo apt-get install update
4 sudo apt-get install linux-source
5 sudo apt-get install linux-headers-$(uname -r)
6 sudo apt-get install build-essential
7 cd mt7610u-linksys-ae6000-wifi-fixes-master
8 sudo make clean
9 sudo make
10 sudo make install

Building with DKMS

11 sudo apt-get install dkms
12 sudo cp -R . /usr/src/mt7610u_sta-1.0
13 sudo dkms add mt7610u_sta/1.0
14 sudo dkms build mt7610u_sta/1.0
15 sudo dkms install mt7610u_sta/1.0
16 reboot
Sorry my bad English, I'm from Brazil..!!

I could not do with this method.

I managed with the method below:
https://github.com/ivannieto/archer-t2u ... -installer

##You should have python3 installed. If you not, type:
sudo apt install python3

##You should have git installed. If you not, type:
sudo apt install git

bash
$ git clone https://github.com/ivannieto/archer-t2u ... taller.git
$ cd archer-t2u-ubuntu-installer/ && python3 t2u-driver-installer.py

##Restart your computer when the installation is finished

##Once you had restarted, you can enable or disable the driver. Plug your USB dongle and run:

bash
$ sudo t2u-driver
## e = Enable
## d = Disable

##To uninstall t2u-driver type:

bash
$ sudo uninstall-t2u-driver
zerocoolroot

Re: tp-link archer t2u (ac600)

Post by zerocoolroot »

m3318 wrote: Thu Nov 08, 2018 12:14 pm I successfully compiled and load driver of tp link t2u ac600 in linux mint 19 tara. bellow are steps :D :D :D

https://github.com/xtknight/mt7610u-lin ... wifi-fixes
Building
1 sudo apt-get install linux-headers-$(uname -r)
2 sudo apt-get install gcc
3 sudo apt-get install update
4 sudo apt-get install linux-source
5 sudo apt-get install linux-headers-$(uname -r)
6 sudo apt-get install build-essential
7 cd mt7610u-linksys-ae6000-wifi-fixes-master
8 sudo make clean
9 sudo make
10 sudo make install

Building with DKMS

11 sudo apt-get install dkms
12 sudo cp -R . /usr/src/mt7610u_sta-1.0
13 sudo dkms add mt7610u_sta/1.0
14 sudo dkms build mt7610u_sta/1.0
15 sudo dkms install mt7610u_sta/1.0
16 reboot
What is your kernel version..??
m3318

Re: tp-link archer t2u (ac600)

Post by m3318 »

kernel version is 4.15.0-20-generic
zerocoolroot

Re: tp-link archer t2u (ac600)

Post by zerocoolroot »

m3318 wrote: Tue Nov 13, 2018 11:07 pm kernel version is 4.15.0-20-generic
My kernel is the same, but I could not..!!

Could you detail the method used..??

Automatically recognizes..??

Need reboot..??
m3318

Re: tp-link archer t2u (ac600)

Post by m3318 »

disconnect the adapter, you need the temporary internet connection, which i got it form my mobile usb tethering, then run these command in to your terminals one by one (don't disconnect internet), after the reboot reconnect the adapter. if you don't have temporary internet connection then it is useless for you.
zerocoolroot

Re: tp-link archer t2u (ac600)

Post by zerocoolroot »

m3318 wrote: Wed Nov 14, 2018 10:50 pm disconnect the adapter, you need the temporary internet connection, which i got it form my mobile usb tethering, then run these command in to your terminals one by one (don't disconnect internet), after the reboot reconnect the adapter. if you don't have temporary internet connection then it is useless for you.
I got it. The adapter found the 2.4GHz Network, but did not find the 5GHz Network. Do you know why..??

The 2.4GHz Network signal is low..!!
m3318

Re: tp-link archer t2u (ac600)

Post by m3318 »

run this commad iwlist ra0 freq
o/p : 47 channels in total; available frequencies :
Channel 01 : 2.412 GHz
Channel 02 : 2.417 GHz
Channel 03 : 2.422 GHz
Channel 04 : 2.427 GHz
Channel 05 : 2.432 GHz
Channel 06 : 2.437 GHz
Channel 07 : 2.442 GHz
Channel 08 : 2.447 GHz
Channel 09 : 2.452 GHz
Channel 10 : 2.457 GHz
Channel 11 : 2.462 GHz
Channel 12 : 2.467 GHz
Channel 13 : 2.472 GHz
Channel 14 : 2.484 GHz
Channel 36 : 5.18 GHz
Channel 38 : 5.19 GHz
Channel 40 : 5.2 GHz
Channel 44 : 5.22 GHz
Channel 46 : 5.23 GHz
Channel 48 : 5.24 GHz
Channel 52 : 5.26 GHz
Channel 54 : 2.412 GHz
Channel 56 : 5.28 GHz
Channel 60 : 5.3 GHz
Channel 62 : 2.412 GHz
Channel 64 : 5.32 GHz
Channel 100 : 5.5 GHz
Channel 104 : 5.52 GHz
Channel 108 : 5.54 GHz
Channel 112 : 5.56 GHz
Channel 116 : 5.58 GHz
Channel 118 : 2.412 GHz
Current Frequency:2.462 GHz (Channel 11)

that means it supports 5GHz and 2 GHz, but currently connected to frequency 2.462 GHz.
zerocoolroot

Re: tp-link archer t2u (ac600)

Post by zerocoolroot »

m3318 wrote: Thu Nov 15, 2018 8:36 am run this commad iwlist ra0 freq
o/p : 47 channels in total; available frequencies :
Channel 01 : 2.412 GHz
Channel 02 : 2.417 GHz
Channel 03 : 2.422 GHz
Channel 04 : 2.427 GHz
Channel 05 : 2.432 GHz
Channel 06 : 2.437 GHz
Channel 07 : 2.442 GHz
Channel 08 : 2.447 GHz
Channel 09 : 2.452 GHz
Channel 10 : 2.457 GHz
Channel 11 : 2.462 GHz
Channel 12 : 2.467 GHz
Channel 13 : 2.472 GHz
Channel 14 : 2.484 GHz
Channel 36 : 5.18 GHz
Channel 38 : 5.19 GHz
Channel 40 : 5.2 GHz
Channel 44 : 5.22 GHz
Channel 46 : 5.23 GHz
Channel 48 : 5.24 GHz
Channel 52 : 5.26 GHz
Channel 54 : 2.412 GHz
Channel 56 : 5.28 GHz
Channel 60 : 5.3 GHz
Channel 62 : 2.412 GHz
Channel 64 : 5.32 GHz
Channel 100 : 5.5 GHz
Channel 104 : 5.52 GHz
Channel 108 : 5.54 GHz
Channel 112 : 5.56 GHz
Channel 116 : 5.58 GHz
Channel 118 : 2.412 GHz
Current Frequency:2.462 GHz (Channel 11)

that means it supports 5GHz and 2 GHz, but currently connected to frequency 2.462 GHz.
32 channels in total; available frequencies :
Channel 01 : 2.412 GHz
Channel 02 : 2.417 GHz
Channel 03 : 2.422 GHz
Channel 04 : 2.427 GHz
Channel 05 : 2.432 GHz
Channel 06 : 2.437 GHz
Channel 07 : 2.442 GHz
Channel 08 : 2.447 GHz
Channel 09 : 2.452 GHz
Channel 10 : 2.457 GHz
Channel 11 : 2.462 GHz
Channel 12 : 2.467 GHz
Channel 13 : 2.472 GHz
Channel 36 : 5.18 GHz
Channel 38 : 5.19 GHz
Channel 40 : 5.2 GHz
Channel 44 : 5.22 GHz
Channel 46 : 5.23 GHz
Channel 48 : 5.24 GHz
Channel 52 : 5.26 GHz
Channel 54 : 2.412 GHz
Channel 56 : 5.28 GHz
Channel 60 : 5.3 GHz
Channel 62 : 2.412 GHz
Channel 64 : 5.32 GHz
Channel 149 : 5.745 GHz
Channel 151 : 2.412 GHz
Channel 153 : 5.765 GHz
Channel 157 : 5.785 GHz
Channel 159 : 2.412 GHz
Channel 161 : 5.805 GHz
Channel 165 : 5.825 GHz
Current Frequency:2.412 GHz (Channel 1

In Windows works fine in 5GHz..!!
m3318

Re: tp-link archer t2u (ac600)

Post by m3318 »

my router supports only b/g/n mode. what about you?
zerocoolroot

Re: tp-link archer t2u (ac600)

Post by zerocoolroot »

m3318 wrote: Thu Nov 15, 2018 9:03 am my router supports only b/g/n mode. what about you?
My router supports b/g/n/ac mode..!!
Robynsveil
Level 1
Level 1
Posts: 43
Joined: Fri Aug 03, 2012 6:28 pm

Re: tp-link archer t2u (ac600)

Post by Robynsveil »

JeremyB wrote: Thu Nov 08, 2018 5:48 pm ...
If that github actually does work, better instructions would be

Code: Select all

sudo apt install git dkms build-essential
git clone https://github.com/xtknight/mt7610u-linksys-ae6000-wifi-fixes.git
sudo dkms add mt7610u-linksys-ae6000-wifi-fixes
sudo dkms install mt7610u_sta/1.0
Then check EFI Secure Boot status with

Code: Select all

mokutil --sb-state
Any response other than Secure Boot is enabled should be good
This approach was quick and worked a treat on Linux Mint 19 (Cinnamon) on a AMD 2600-based system. Already had git installed as well as dkms build-essentials. No EFI to be concerned with.

Thank you for sharing this approach! :)
endersondesign

Re: tp-link archer t2u (ac600)

Post by endersondesign »

I'm having a nightmare getting my T2U working. I've tried about fifty different drivers and ways of setting it up, and nothing has been successful. I'm wondering if it's because there's four different versions of the dongle (with four different chipsets)? Mine's V2, so what is the version for those people who made it work? Mine's showing as hardware ID xxxx:011e if that helps?

I'm running Mint/Cinnamon. I've tried the different kernel options, but I'm currently on 4.20. My system doesn't have SecureBoot functionality.

I'm pretty close to just binning it now - I've got a 2.4 dongle that's working fine, so I'll just have to live with that... :(
JeremyB
Level 21
Level 21
Posts: 13841
Joined: Fri Feb 21, 2014 8:17 am

Re: tp-link archer t2u (ac600)

Post by JeremyB »

If you have removed the code that has failed, see if https://github.com/jeremyb31/mt7610u.git works as I just made a change to include that ID 2357:011e?
endersondesign

Re: tp-link archer t2u (ac600)

Post by endersondesign »

Awesome, thanks! I'll give it a try when I'm back at my PC later :)
Locked

Return to “Networking”