You are not logged in.

#1 2021-10-30 10:56:18

alonso
Member
Registered: 2021-08-02
Posts: 11

TOTOLINK N150UA-B doesn't work

Hi,

I buy a TOTOLINK N150UA-B usb wireless adapter recently but it doesn't work under Arch Linux.

When I type command "lsusb", it shows:

Bus 002 Device 024: ID 0bda:1a2b Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (Driver CDROM Mode)

I googled for that and I found I have to install a package called "usb_modeswitch" to switch the mode.

After package "usb_modeswitch" installed, lsusb shows:

Bus 002 Device 010: ID 0bda:2005 Realtek Semiconductor Corp. 802.11n WLAN Adapter

It seems that wireless adapter's mode has been changed successfully. But command "ip link" still show me nothing

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: enp2s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
    link/ether 00:e0:4c:68:03:23 brd ff:ff:ff:ff:ff:ff

I loaded all the possible Realtek wireless modules but it still doesn't work.
Any suggestions about this problem? Thanks in advance.


dmesg

[ 7170.433112] usb 2-5: USB disconnect, device number 17
[ 7175.925452] usb 2-5: new high-speed USB device number 19 using ehci-pci
[ 7176.072867] usb 2-5: New USB device found, idVendor=0bda, idProduct=1a2b, bcdDevice= 2.00
[ 7176.072884] usb 2-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 7176.072892] usb 2-5: Product: DISK
[ 7176.072897] usb 2-5: Manufacturer: Realtek
[ 7176.074293] usb-storage 2-5:1.0: USB Mass Storage device detected
[ 7176.075118] scsi host9: usb-storage 2-5:1.0
[ 7176.679192] usb 2-5: USB disconnect, device number 19
[ 7176.942066] usb 2-5: new high-speed USB device number 20 using ehci-pci
[ 7177.089644] usb 2-5: New USB device found, idVendor=0bda, idProduct=2005, bcdDevice= 2.00
[ 7177.089661] usb 2-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 7177.089670] usb 2-5: Product: 802.11n WLAN Adapter
[ 7177.089676] usb 2-5: Manufacturer: Realtek
[ 7177.089680] usb 2-5: SerialNumber: 00E04CB82101

Last edited by alonso (2021-10-30 11:01:33)

Offline

#2 2021-11-23 08:21:30

alonso
Member
Registered: 2021-08-02
Posts: 11

Re: TOTOLINK N150UA-B doesn't work

https://github.com/McMCCRU/rtl8188gu

I found this driver maintained by Igor Mokrushin.
After a little modification, my usb wireless dongle works now. smile
Thanks to Igor Mokrushin!

os_dep/linux/usb_intf.c

#ifdef CONFIG_RTL8710B
        /*=== Realtek dongle ===*/
        {USB_DEVICE_AND_INTERFACE_INFO(USB_VENDER_ID_REALTEK, 0xB711, 0xff, 0xff, 0xff), .driver_info = RTL8710B}, /* 8710B = 8188GU 1*1 */
        {USB_DEVICE_AND_INTERFACE_INFO(USB_VENDER_ID_REALTEK, 0x2005, 0xff, 0xff, 0xff), .driver_info = RTL8710B},
#endif

Last edited by alonso (2021-11-23 08:22:40)

Offline

Board footer

Powered by FluxBB