如何为我的 Linksys AE1200 Wireless-N USB 适配器安装驱动程序?

Lew*_*ham 8 wireless ndiswrapper drivers software-installation

我最近从主网站下载了 Ubuntu,希望能与 Windows 进行双重引导。当操作系统工作时,它说我需要为我的显卡安装驱动程序。当我输入密码时,安装失败。我想这是因为我需要上网。我尝试使用安装光盘安装我的 WiFi USB 适配器,但是当我单击 exe 时 Ubuntu 似乎没有运行安装程序。

因为我真的很想从我的编程和 Windows 中使用 Ubuntu 来满足我的游戏需求,所以我有哪些可用的解决方案?

包装盒上的名称是:Linksys AE1200 Wireless-N USB Adapter

描述是这样的:

ID  13b1:0039 Linksys (a comma messed up format)
ID  046d:0a0b Logitech, Inc. ClearChat Pro USB (headset)
Run Code Online (Sandbox Code Playgroud)

Cla*_*ton 6

我刚买了 Linksys AE1200 USB 无线适配器,它在 2012 年 10 月 19 日工作正常。

我的lsusb结果:

总线 001 设备 005:ID 13b1:0039 Linksys AE1200 802.11bgn 无线适配器 [Broadcom BCM43235]

出于某种原因,安装 CD 上Win XP 驱动程序无法运行。我尝试过的其他 Broadcom 芯片组驱动程序也没有为我工作。

解决方案

因此,搜索在这里和ubuntu论坛取得了此链接:http://www.wikidevi.com/wiki/Linksys_AE1200和提供的XP驱动程序的此修复版:http://wikidevi.com/files/Drivers/Broadcom/bcmwl_4323x .zip文件

  1. 下载 bcmwl_4323x.zip 并解压缩(对于我的示例,我的下载目录)
  2. 我打开了一个终端窗口:
    • cd /Downloads/bcmwl_4323x/xp/
    • :~/下载/bcmwl_4323x/xp$ sudo ndiswrapper -i bcmwlhigh5.inf
    • sudo modprobe ndiswrapper
  3. ndiswrapper -l 产生:

bcmwlhigh5:驱动程序安装
设备 (13B1:0039) 存在

  • 退出终端窗口,拔下 LAN 电缆,系统重新启动。
  • (可选)如果 USB 无线卡在重启后不工作,您可能需要将ndiswrapper添加到您的,/etc/modules以便它在启动时加载 ndiswrapper。
    • 如果在启动时无线网卡上的 LED 没有亮起,您应该能够测试是否需要这样做。您在终端中运行,sudo modprobe -r ndiswrapper | sudo modprobe ndiswrapper然后 LED 亮起。


sar*_*old 1

思科似乎并不关心在该特定设备上支持 Linux:http://homecommunity.cisco.com/t5/Wireless-Adapters/AE1200-linux-Driver/mp/410963 ?comm_cc=HSus&comm_lang=en#M30247

该论坛上的一位用户建议RALinkTech 驱动程序“RT3572USB”适用于您的设备,但表示这会很麻烦。我无法证实这两种说法。

ndiswrapper(提供足够 Windows API 来让 Windows驱动程序在 Linux 下运行的工具  )未在其支持的设备列表中提及您的设备。

一般来说,最好在  了解设备的支持级别后购买设备。一些公司(英特尔)付出了额外的努力来确保他们的硬件可以在 Linux 下运行(有时在 Windows 驱动程序发布之前;我采访过的他们的开发团队成员都非常高兴能够支持 Linux)。有些公司根本不在乎。确定支持哪些特定设备可能很困难;一种简单的方法是寻找/lib/modules/$(uname -r)/kernel/drivers/net/司机。所有 USB 驱动程序都位于该usb/子目录中。在我的系统上:

$ for f in * ; do echo -ne "$f \t" ; modinfo $f | grep ^description ; done
asix.ko     description:    ASIX AX8817X based USB 2.0 Ethernet Devices
catc.ko     description:    CATC EL1210A NetMate USB Ethernet driver
cdc_eem.ko  description:    USB CDC EEM
cdc_ether.ko    description:    USB CDC Ethernet devices
cdc_ncm.ko  description:    USB CDC NCM host driver
cdc-phonet.ko   description:    USB CDC Phonet host interface
cdc_subset.ko   description:    Simple 'CDC Subset' USB networking links
cx82310_eth.ko  description:    Conexant CX82310-based ADSL router USB ethernet driver
dm9601.ko   description:    Davicom DM9601 USB 1.1 ethernet devices
gl620a.ko   description:    GL620-USB-A Host-to-Host Link cables
hso.ko  description:    USB High Speed Option driver
int51x1.ko  description:    Intellon usb powerline adapter
ipheth.ko   description:    Apple iPhone USB Ethernet driver
kaweth.ko   description:    KL5USB101 USB Ethernet driver
mcs7830.ko  description:    USB to network adapter MCS7830)
net1080.ko  description:    NetChip 1080 based USB Host-to-Host Links
pegasus.ko  description:    Pegasus/Pegasus II USB Ethernet driver
plusb.ko    description:    Prolific PL-2301/2302 USB Host to Host Link Driver
rndis_host.ko   description:    USB Host side RNDIS driver
rtl8150.ko  description:    rtl8150 based usb-ethernet driver
sierra_net.ko   description:    USB-to-WWAN Driver for Sierra Wireless modems
smsc75xx.ko     description:    SMSC75XX USB 2.0 Gigabit Ethernet Devices
smsc95xx.ko     description:    SMSC95XX USB 2.0 Ethernet Devices
usbnet.ko   description:    USB network driver framework
zaurus.ko   description:    Sharp Zaurus PDA, and compatible products
Run Code Online (Sandbox Code Playgroud)

其中无法显示的一件事是驱动程序质量  ——驱动程序和设备之间的质量各不相同。除了在网络上搜索您感兴趣的特定设备并查看人们是否普遍成功或抱怨之外,没有什么可做的——知道大多数人会报告抱怨,但他们的设备却无法正常工作。