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: 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-18 00:12:22
Thanks for the update. Indeed, pity.
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.
#22
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-18 17:20:04
Bowen98 wrote
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.
The TP-Link Archer-T2U is based on Ralink 761A Mediatek is usually known for supporting the open source community.
It sound att bit weard that Ralink does not have a driver for a never kernel when the came up with one for the 2.x and 3.x kernels.
Mediatek should provide a driver for the chip but it is TP that must build the binary package.
If thats the case that the chip vendor does not want to provide a driver, wish i have very hard to belive, the TP-Link should demand them to release the source code so the community can come up with one or simple change provider of chip.
But as i said, i have very hard to belive that there is not a ralink driver for linux, it sounds more like a missunderstanding or excuse for not stick up with updated kernels.
This is a great opportunity to push TP-Link product further on linux market and win market share, so come on now, ride on the wave.
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.
#23
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 4
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2017-12-01
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-09-06 01:24:32
Hi all. mt76x0 chipsets are supported by default in newer version of Linux kernel. Please see if your hardware is supported :
https://github.com/torvalds/linux/blob/master/drivers/net/wireless/mediatek/mt76/mt76x0/usb.c
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.
#24
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-09-07 00:36:16
BZHDeveloper wrote
Hi all. mt76x0 chipsets are supported by default in newer version of Linux kernel. Please see if your hardware is supported : https://github.com/torvalds/linux/blob/master/drivers/net/wireless/mediatek/mt76/mt76x0/usb.c
Just tried my TP-Link T2U AC-66+ on kernel 4.15.0-33-generic #36~16.04.1-Ubuntu SMP Wed Aug 15 17:19:05 UTC 2018 i686 i686 i686 GNU/Linux.
Network interface is not recognised by ifconfig.
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.
#25
Options
- Copy Link
- Report Inappropriate Content
Thread Manage
Announcement Manage
Posts: 4
Helpful: 0
Solutions: 0
Stories: 0
Registered: 2017-12-01
Re:Please provide support to Archer T2U USB on current up-to-date Linux version (minimum Ubuntu 16.04, RHEL 7)
2018-09-08 00:08:14
latest module is available only in 4.19 kernel
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.
#26
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: 6032
Replies: 25
Voters 0
No one has voted for it yet.
Tags
Related Articles
Report Inappropriate Content
Transfer Module
New message