Netgear A6210 USB 适配器 Ubuntu 16.04 LTS 的驱动程序不工作

Netgear A6210 USB 适配器 Ubuntu 16.04 LTS 的驱动程序不工作

在将此标记为重复之前,请知悉我已阅读其他帖子,但这些答案并未解决我的问题。基本上总结一下我正在处理的问题:我已插入适配器,并下载和设置了驱动程序,但除了通过手机的临时以太网电缆外,没有 wifi 信号通过。

我已将旧的 wifi 卡列入黑名单,因为它的下载速度非常糟糕,只有 0.01mb。这导致我的右上方 wifi 菜单仅列出我的以太网设备及其连接。

为了获取 A6210 所需的路由器,我采用了以下步骤:

$ git clone https://github.com/jurobystricky/Netgear-A6210
$ cd Netgear-A6210
$ make
$ sudo make install

安装完所有东西后,我插入适配器,但什么也没发生。我想也许我必须重新启动,所以我这样做了,但仍然无济于事。此时,我觉得我拥有所有必要的部件,只是没有最终产品。还补充一点:我无法使用 NdisWrapper 方法,因为无法提取仅适用于 Windows 10 的驱动程序。

lsusb:

Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 005 Device 002: ID 13d3:3414 IMC Networks 
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 003: ID 1532:0504 Razer USA, Ltd 
Bus 004 Device 002: ID 046d:c335 Logitech, Inc. 
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 011 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 010 Device 002: ID 046d:c07d Logitech, Inc. 
Bus 010 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 009 Device 002: ID 0846:9053 NetGear, Inc. 
Bus 009 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 008 Device 002: ID 05ac:12a8 Apple, Inc. iPhone5/5C/5S/6
Bus 008 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

如果配置:

enp2s0    Link encap:Ethernet  HWaddr 54:a0:50:86:4c:27  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

enp3s0u1c4i2 Link encap:Ethernet  HWaddr 1a:65:90:84:0f:6e  
          inet addr:172.20.10.3  Bcast:172.20.10.15  Mask:255.255.255.240
          inet6 addr: 2607:fb90:984:a0a8:1dee:5519:507c:ca80/64 Scope:Global
          inet6 addr: 2607:fb90:984:a0a8:4dc6:1bba:e81a:4dc4/64 Scope:Global
          inet6 addr: fe80::4fb5:e8:49ed:e7b1/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:10214 errors:0 dropped:0 overruns:0 frame:0
          TX packets:9553 errors:1 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:9443066 (9.4 MB)  TX bytes:1135816 (1.1 MB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:1220 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1220 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1 
          RX bytes:124400 (124.4 KB)  TX bytes:124400 (124.4 KB)

消息 |尾巴:

[   24.424151]  [<ffffffff83851891>] start_secondary+0x151/0x190
[   24.424152] ---[ end trace 1545bb3f3c099b63 ]---
[   24.424154] ipheth 8-1:4.2: ipheth_tx_timeout: TX timeout
[  806.010958] usb 9-2: USB disconnect, device number 2
[  806.791227] usb 9-2: new SuperSpeed USB device number 3 using xhci_hcd
[  806.815783] usb 9-2: New USB device found, idVendor=0846, idProduct=9053
[  806.815787] usb 9-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  806.815790] usb 9-2: Product: A6210
[  806.815793] usb 9-2: Manufacturer: NETGEAR
[  806.815795] usb 9-2: SerialNumber: 100

答案1

我终于找到了解决我的问题的方法,因此这里是我找到的修复方法,以防您遇到同样的困境。

当我尝试使用该命令时,sudo modprobe mt7662u_sta它报告说公钥不可用。为了解决这个问题,我不得不在启动时在 UEFI BIOS 页面中禁用安全启动。这可以通过按ESC, F1, F2或系统在启动时需要的任何键轻松完成。

完成此操作并重新启动后,我再次输入 modprobe 命令,然后 wifi 就弹出来了。

相关内容