Netgear A6100 在 Ubuntu 14.04 上

Netgear A6100 在 Ubuntu 14.04 上

我正在尝试在装有 Ubuntu 14.04 的 Sony Vaio 笔记本电脑上使用 Netgear A6100 无线 USB WIFI 适配器。安装 Ubuntu 后,预装的无线网卡丢失了来自 wifi 路由器的信号,因此我购买了这款 USB 无线适配器来解决我的连接问题。

这是的输出lsusb

Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 5986:02d3 Acer, Inc 
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 003: ID 3938:1032  
Bus 003 Device 002: ID 0846:9052 NetGear, Inc. 
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

这是的输出sudo lshw -c network

*-network               
   description: Wireless interface
   product: AR9485 Wireless Network Adapter
   vendor: Qualcomm Atheros
   physical id: 0
   bus info: pci@0000:01:00.0
   logical name: wlan0
   version: 01
   serial: 08:ed:b9:b8:88:cb
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list rom ethernet physical wireless
   configuration: broadcast=yes driver=ath9k driverversion=3.16.0-46-generic firmware=N/A ip=192.168.1.11 latency=0 link=yes multicast=yes wireless=IEEE 802.11bgn
   resources: irq:16 memory:c0600000-c067ffff memory:c0680000-c068ffff
*-network
   description: Ethernet interface
   product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:03:00.0
   logical name: eth0
   version: 07
   serial: 30:f9:ed:af:9f:a4
   size: 10Mbit/s
   capacity: 1Gbit/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 1000bt 1000bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl8168e-3_0.0.4 03/27/12 latency=0 link=no multicast=yes port=MII speed=10Mbit/s
   resources: irq:43 ioport:2000(size=256) memory:c0404000-c0404fff memory:c0400000-c0403fff
*-network
   description: Wireless interface
   physical id: 1
   bus info: usb@3:2
   logical name: wlan1
   serial: 6c:b0:ce:22:ed:3a
   capabilities: ethernet physical wireless
   configuration: broadcast=yes driver=rtl8812au driverversion=3.16.0-46-generic firmware=N/A link=no multicast=yes wireless=unassociated

答案1

您的设备使用了罕见且难以捉摸的驱动程序 8812au。请获取临时有线以太网或类似连接,打开终端并执行以下操作:

sudo apt-get update
sudo apt-get install linux-headers-generic build-essential git
git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
cd ~/rtl8812AU_8821AU_linux
make
sudo make install
sudo modprobe 8812au

你的无线网络现在应该可以正常工作了。

当 Update Manager 安装较新的 Linux 映像时,重新编译:

cd rtl8812AU_8821AU_linux/
make clean
make
sudo make install
sudo modprobe 8812au

请保留该文件和这些说明。

我们可能需要将内部驱动程序列入黑名单以防止干扰。请通过以下命令告诉我其驱动程序:

 sudo lshw -C network

然后我将编辑这个答案来提供说明。

答案2

除了上述 chilli 的说明之外,此驱动程序还提供 dkms 选项。

cd
git clone https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git
cd rtl8812AU_8821AU_linux
sudo cp -R . /usr/src/rtl8812AU_8821AU_linux-1.0
sudo dkms add -m rtl8812AU_8821AU_linux -v 1.0
sudo dkms build -m rtl8812AU_8821AU_linux -v 1.0
sudo dkms install -m rtl8812AU_8821AU_linux -v 1.0

这样,您不必在每次更新内核时重新编译驱动程序。

答案3

对于 16.04

此驱动程序有一个更新版本,在较新的内核 4+ 上运行得更好。WPS LED 灯工作正常,连接也更加一致,范围也更大。

运行以下命令进行安装:

sudo apt-get install linux-headers-$(uname -r) build-essential git gcc-5
git clone https://github.com/diederikdehaas/rtl8812AU.git
make CC=/usr/bin/gcc-5
sudo make install
sudo modprobe 8812au
echo 8812au | sudo tee -a /etc/modules

点击这里查看更多信息

答案4

16.04 赛尼尔

我在这个网站上没有足够的“声誉”来评论 mchid 建议使用 diederikdehaas 驱动程序,但截至撰写本文时,diederikdehaas 驱动程序不适用于 Netgear A6100。它缺少一些文件。为了获得适用于 A6100 的模块,需要在编译期间启用 CONFIG_RTL8821AU,然后由于缺少头文件而导致构建失败。请参阅https://github.com/diederikdehaas/rtl8812AU/issues/99

我偶然发现了一个类似的、看起来更完整的 Github 存储库:https://github.com/Rajpratik71/Realtek-rtl8811AU_8812AU_8821AU_linux-source-code.git 该存储库生成的 8812au 驱动程序适用于 a6100。

rtl8812au 驱动程序同样有效https://github.com/abperiasamy/rtl8812AU_8821AU_linux

所有这些驱动程序似乎都是基于 Realtek 的 MS Window 设备驱动程序代码,但没有归属,而且我没有看到源代码来自哪里。

上述 8812au 驱动程序丢弃了大约 20% 的数据包;rtl8812au 驱动程序丢弃了大约 300% 的数据包。

4.4.0 内核源码中有一个适用于 8821ae 的驱动程序,它是 PCI,而不是 USB。也许这个可以适配。

相关内容