有适用于无线适配器 Trendnet TBW-108UB 的 ubuntu 驱动程序吗?

有适用于无线适配器 Trendnet TBW-108UB 的 ubuntu 驱动程序吗?

我一直在寻找可以在 ubuntu 中使用 trendnet TBW-108UB 适配器的方法,集成的 wlan 不再工作,所以我购买了 trendnet 适配器 wifi 和蓝牙,蓝牙似乎可以工作,但 wifi 未被操作系统识别。它在 Windows 上运行良好,但我也使用 Ubuntu,请帮忙。

适配器官方网站链接 https://www.trendnet.com/support/support-detail.asp?prod=190_TBW-108UB

$ lsusb
Bus 001 Device 002: ID 8087:8001 Intel Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 002: ID 20f4:108a TRENDnet <---this is the adapter 
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

我试过这个: https://help.ubuntu.com/community/WifiDocs/WirelessTroubleShootingGuide 但 nm-tool:未找到

sudo lshw -C network 
  *-network                 
       description: Ethernet interface
       product: RTL810xE PCI Express Fast Ethernet controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:07:00.0
       logical name: enp7s0
       version: 07
       serial: 14:18:77:c3:bc:a9
       size: 100Mbit/s
       capacity: 100Mbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8106e-1_0.0.1 06/29/12 ip=192.168.50.241 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
       resources: irq:43 ioport:3000(size=256) memory:a9000000-a9000fff memory:c0000000-c0003fff

正如您使用 lshw -C 网络所看到的,仅显示以太网适配器,而 trendnet 并不存在。

我也尝试过在软件和更新->附加驱动程序中安装专有驱动程序:没有可用的附加驱动程序。

答案1

我已经修改了 lwfinger rtl8723bu,以便它能够支持你的设备,请执行

sudo apt install git build-essential dkms
git clone https://github.com/jeremyb31/rtl8723bu.git
sudo dkms add ./rtl8723bu
sudo dkms install rtl8723bu/4.3.6.11_12942.20141204_BTCOEX20140507-4E40

在 UEFI 系统上需要禁用安全启动,你可以在终端中使用以下命令检查安全启动状态mokutil --sb-state

重启

答案2

您可以找到司机信息页面这里。他们指出它需要 Realtek RTL8723BU 芯片组的驱动程序。

可以找到驱动程序这里并且可能这里

相关内容