Home Network Community >
Adapters >
Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
<
Adapters
Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
This thread has been locked for further replies. You can start a new thread to share your ideas or ask questions.
Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
Posts: 14
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2015-12-27
2017-11-26 15:39:09
Posts: 14
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2015-12-27
Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2017-11-26 15:39:09
Tags:
Model : Archer T2U USB
Many people have been reporting unable to compile the Archer T2U USB driver on current Linux.
- https://askubuntu.com/questions/806334/tp-link-archer-t2u-does-not-work-on-ubuntu-16-04#848649
- https://forums.ni.com/t5/NI-Linux-Real-Time-Discussions/Compiling-Archer-T2U-USB-WiFi-adapter-on-target/td-p/3676854
- https://wyldeplayground.net/trouble-installing-wifi-drivers/
- https://ubuntuforums.org/showthread.php?t=2314039
Old old driver on TPLINK website ( http://www.tp-link.com/us/download/Archer-T2U.html#Driver) is NOT working: http://static.tp-link.com/res/down/soft/Archer_T2U_V1_150901.zip
One user had been kind to provide alternative driver:
https://bitbucket.org/sanrath/mediatek_mt7610u_sta_driver_linux-64bit/
[CODE]$ git clone https://bitbucket.org/sanrath/mediatek_mt7610u_sta_driver_linux-64bit
$ cd mediatek_mt7610u_sta_driver_linux-64bit
$ vi common/rtusb_dev_id.c
$ make
$ make install
$ modprobe mt7610u_sta[/CODE]
After adding the following line into the ./common/rtusb_dev_id.c (as per codes from ./Archer_T2U_V1_150901/Driver/NETIF/common/rtusb_dev_id.c), the driver can detect Archer T2U USB but is not able to work (getting segmentation fault on the ModemManager)
[CODE]#if 1
{USB_DEVICE(0x148F,0x761A)}, /* T2Uv1 */
{USB_DEVICE(0x2357,0x0105)}, /* T1Uv1 */
#endif[/CODE]
dmesg output:
[CODE][ 2047.173851] ==>RT65xx_WLAN_ChipOnOff(): OnOff:0, Reset= 0, pAd->WlanFunCtrl:0xff000003, Reg-WlanFunCtrl=0xffffffff
[ 2047.173852] WIFI device has been disconnected
[ 2047.173852] VendrCmdMultiWrite_nBytes failed!
[ 2047.173872] WIFI device has been disconnected
[ 2047.173881] ---> RTMPFreeTxRxRingMemory
[ 2047.173888] <--- RTMPFreeTxRxRingMemory
[ 2047.173920] RTUSB disconnect successfully
[ 2053.448129] usbcore: deregistering interface driver rt2870
[ 2053.448193] <--- rtusb exit
[ 2056.873817] rtusb init rt2870 --->
[ 2056.873947] usbcore: registered new interface driver rt2870
[ 2061.997087] usb 1-11: new high-speed USB device number 7 using xhci_hcd
[ 2062.140366] usb 1-11: New USB device found, idVendor=148f, idProduct=761a
[ 2062.140374] usb 1-11: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2062.140379] usb 1-11: Product: WiFi
[ 2062.140383] usb 1-11: Manufacturer: MediaTek
[ 2062.140386] usb 1-11: SerialNumber: 1.0
[ 2062.141547]
=== pAd = ffffc90002e01000, size = 895280 ===
[ 2062.141665] <-- RTMPAllocTxRxRingMemory, Status=0
[ 2062.141880] <-- RTMPAllocAdapterBlock, Status=0
[ 2062.141973] ==>RT65xx_WLAN_ChipOnOff(): OnOff:1, Reset= 0, pAd->WlanFunCtrl:0x0, Reg-WlanFunCtrl=0xff000002
[ 2062.142791] MCUType = 2
[ 2062.142918] NVM is EFUSE
[ 2062.142922] Endpoint(8) is for In-band Command
[ 2062.142925] Endpoint(4) is for WMM0 AC0
[ 2062.142928] Endpoint(5) is for WMM0 AC1
[ 2062.142930] Endpoint(6) is for WMM0 AC2
[ 2062.142932] Endpoint(7) is for WMM0 AC3
[ 2062.142935] Endpoint(9) is for WMM1 AC0
[ 2062.142937] Endpoint(84) is for Data-In
[ 2062.142939] Endpoint(85) is for Command Rsp
[ 2062.176833] ModemManager[15341]: segfault at 0 ip 0000000000431ab3 sp 00007ffc038c3b80 error 4 in ModemManager[400000+103000]
[/CODE]
lshw and ifup outputs:
[CODE]# lshw -C net
*-network:1 DISABLED
description: Wireless interface
physical id: 3
logical name: ra0
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=RALINK WLAN multicast=yes wireless=Ralink STA
# ifconfig ra0 up
ra0: ERROR while getting interface flags: No such device[/CODE]
Kindly please advice.
Ubuntu 16.04 and RHEL 7 are the current up-to-date Linux releases.
Please provide support to this Archer T2U USB driver
Thanks.
Many people have been reporting unable to compile the Archer T2U USB driver on current Linux.
- https://askubuntu.com/questions/806334/tp-link-archer-t2u-does-not-work-on-ubuntu-16-04#848649
- https://forums.ni.com/t5/NI-Linux-Real-Time-Discussions/Compiling-Archer-T2U-USB-WiFi-adapter-on-target/td-p/3676854
- https://wyldeplayground.net/trouble-installing-wifi-drivers/
- https://ubuntuforums.org/showthread.php?t=2314039
Old old driver on TPLINK website ( http://www.tp-link.com/us/download/Archer-T2U.html#Driver) is NOT working: http://static.tp-link.com/res/down/soft/Archer_T2U_V1_150901.zip
One user had been kind to provide alternative driver:
https://bitbucket.org/sanrath/mediatek_mt7610u_sta_driver_linux-64bit/
[CODE]$ git clone https://bitbucket.org/sanrath/mediatek_mt7610u_sta_driver_linux-64bit
$ cd mediatek_mt7610u_sta_driver_linux-64bit
$ vi common/rtusb_dev_id.c
$ make
$ make install
$ modprobe mt7610u_sta[/CODE]
After adding the following line into the ./common/rtusb_dev_id.c (as per codes from ./Archer_T2U_V1_150901/Driver/NETIF/common/rtusb_dev_id.c), the driver can detect Archer T2U USB but is not able to work (getting segmentation fault on the ModemManager)
[CODE]#if 1
{USB_DEVICE(0x148F,0x761A)}, /* T2Uv1 */
{USB_DEVICE(0x2357,0x0105)}, /* T1Uv1 */
#endif[/CODE]
dmesg output:
[CODE][ 2047.173851] ==>RT65xx_WLAN_ChipOnOff(): OnOff:0, Reset= 0, pAd->WlanFunCtrl:0xff000003, Reg-WlanFunCtrl=0xffffffff
[ 2047.173852] WIFI device has been disconnected
[ 2047.173852] VendrCmdMultiWrite_nBytes failed!
[ 2047.173872] WIFI device has been disconnected
[ 2047.173881] ---> RTMPFreeTxRxRingMemory
[ 2047.173888] <--- RTMPFreeTxRxRingMemory
[ 2047.173920] RTUSB disconnect successfully
[ 2053.448129] usbcore: deregistering interface driver rt2870
[ 2053.448193] <--- rtusb exit
[ 2056.873817] rtusb init rt2870 --->
[ 2056.873947] usbcore: registered new interface driver rt2870
[ 2061.997087] usb 1-11: new high-speed USB device number 7 using xhci_hcd
[ 2062.140366] usb 1-11: New USB device found, idVendor=148f, idProduct=761a
[ 2062.140374] usb 1-11: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2062.140379] usb 1-11: Product: WiFi
[ 2062.140383] usb 1-11: Manufacturer: MediaTek
[ 2062.140386] usb 1-11: SerialNumber: 1.0
[ 2062.141547]
=== pAd = ffffc90002e01000, size = 895280 ===
[ 2062.141665] <-- RTMPAllocTxRxRingMemory, Status=0
[ 2062.141880] <-- RTMPAllocAdapterBlock, Status=0
[ 2062.141973] ==>RT65xx_WLAN_ChipOnOff(): OnOff:1, Reset= 0, pAd->WlanFunCtrl:0x0, Reg-WlanFunCtrl=0xff000002
[ 2062.142791] MCUType = 2
[ 2062.142918] NVM is EFUSE
[ 2062.142922] Endpoint(8) is for In-band Command
[ 2062.142925] Endpoint(4) is for WMM0 AC0
[ 2062.142928] Endpoint(5) is for WMM0 AC1
[ 2062.142930] Endpoint(6) is for WMM0 AC2
[ 2062.142932] Endpoint(7) is for WMM0 AC3
[ 2062.142935] Endpoint(9) is for WMM1 AC0
[ 2062.142937] Endpoint(84) is for Data-In
[ 2062.142939] Endpoint(85) is for Command Rsp
[ 2062.176833] ModemManager[15341]: segfault at 0 ip 0000000000431ab3 sp 00007ffc038c3b80 error 4 in ModemManager[400000+103000]
[/CODE]
lshw and ifup outputs:
[CODE]# lshw -C net
*-network:1 DISABLED
description: Wireless interface
physical id: 3
logical name: ra0
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=RALINK WLAN multicast=yes wireless=Ralink STA
# ifconfig ra0 up
ra0: ERROR while getting interface flags: No such device[/CODE]
Kindly please advice.
Ubuntu 16.04 and RHEL 7 are the current up-to-date Linux releases.
Please provide support to this Archer T2U USB driver
Thanks.
File:
Archer_T2U_V1_150901.pngDownload
#1
Options
- Copy Link
- Subscribe
- Bookmark
- Report Inappropriate Content
Thread Manage
Announcement Manage
25 Reply
Posts: 14
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2015-12-27
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-01-27 09:25:51
Hi. Is there anyone from TPLink can help?
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#12
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 14
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2015-12-27
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-02-11 01:14:34
Hi TPLink team. Can some of you please help?
In the Archer T2U USB box, you advertised the Archer T2U USB was supporting linux, but you do not indicate that you are actually only supporting old linux kernel.
Can you please help to look into this and ensure the current linux kernel is supported?
Thanks.
In the Archer T2U USB box, you advertised the Archer T2U USB was supporting linux, but you do not indicate that you are actually only supporting old linux kernel.
Can you please help to look into this and ensure the current linux kernel is supported?
Thanks.
File:
Archer_T2U_USB.jpgDownload
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#13
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 2
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2017-12-20
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-02-11 10:32:38
I found this driver in GitHub, and it works for me.
https://github.com/lixz789/mt7610u_wifi_sta_v3002_dpo_20130916
https://github.com/lixz789/mt7610u_wifi_sta_v3002_dpo_20130916
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#14
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 14
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2015-12-27
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-04-22 17:09:52
@Allervous. No, it does not work :(:(
It freezes my system once the T2U is inserted to the USB port.
My system is Ubuntu 16.04 (kernel 4.4.0).
What linux distro do you use there?
It freezes my system once the T2U is inserted to the USB port.
My system is Ubuntu 16.04 (kernel 4.4.0).
What linux distro do you use there?
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#15
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 1
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2018-05-25
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-05-25 16:29:14
Hi, I'm using 18.04 and I bought a Tp-link AC600 Archer T2U. Where can I found proper drivers for it? Many thanks!
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#16
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 5
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2018-06-29
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-06-30 19:24:33
Its about time to provide a driver for ubuntu 18.04 its one of the most used distributions along desktop users and also an LTS version supported until 2023, once driver is created it will work with the other ubuntu flavours also.
Please provide a driver for ubuntu 18.04 it will make your products more attractive on the market an TP-Link will win market shares.
Please provide a driver for ubuntu 18.04 it will make your products more attractive on the market an TP-Link will win market shares.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#17
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 1
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2018-07-12
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-07-12 21:34:45
I would also like support for *modern* Linux distributions.
At least a response from TP-Link would be nice so we know what to expect.
At least a response from TP-Link would be nice so we know what to expect.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#18
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 2
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2018-07-15
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-07-15 02:26:21
Yes, please provide a driver
for ubuntu 18.04.
I bought the Archer T2U because it was supposed to work on linux distros. Was very disappointed to find out it didn't.
I bought the Archer T2U because it was supposed to work on linux distros. Was very disappointed to find out it didn't.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#19
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 5
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2018-06-29
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-07-16 01:08:20
Mvdanker wrote
I would also like support for *modern* Linux distributions.
At least a response from TP-Link would be nice so we know what to expect.
I agree it would be nice with an answer, so we know what to expect.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#20
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 174
Helpful: 9
Solutions: 1
Stories: 0
Registered: 2018-07-04
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-07-17 11:16:16
Hi, I emailed tp-link support some days ago about this issue.
They won't update the driver to support the newer Linux version. It seems the chip-maker does not support Linux any more, so they can't update to support Linux also.
It's very pity I have to choose another brand which supports newer Linux os.
They won't update the driver to support the newer Linux version. It seems the chip-maker does not support Linux any more, so they can't update to support Linux also.
It's very pity I have to choose another brand which supports newer Linux os.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
0
We appreciate your feedback. Feel free to let us know more. Log in to submit feedback.
#21
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 14
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2015-12-27
2017-11-26 15:39:09
Posts: 14
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2015-12-27
Information
Helpful: 0
Views: 5984
Replies: 25
Voters 0
No one has voted for it yet.
Tags
Related Articles
Report Inappropriate Content
Transfer Module
New message