AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / ubuntu / 问题 / 100090
Accepted
Lewis Graham
Lewis Graham
Asked: 2012-01-31 20:18:19 +0800 CST2012-01-31 20:18:19 +0800 CST 2012-01-31 20:18:19 +0800 CST

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

  • 772

我最近从主网站下载了 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)
software-installation wireless drivers ndiswrapper
  • 5 5 个回答
  • 73292 Views

5 个回答

  • Voted
  1. Clayton
    2012-10-20T20:36:28+08:002012-10-20T20:36:28+08:00

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

    我的lsusb结果:

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

    由于某种原因,安装光盘上的 Win XP 驱动程序无法工作。我尝试过的其他 Broadcom 芯片组驱动程序都没有为我工作。

    解决方案

    因此,在这里和 Ubuntuforums 的搜索产生了这个链接: 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)

    • 退出终端窗口,拔下网线,重启系统。
    • (可选)如果 USB 无线网卡在重新启动后无法工作,您可能需要将ndiswrapper添加到您的/etc/modules设备中,以便它在启动时加载 ndiswrapper。
      • 如果在启动时,无线网卡上的 LED 未亮起,您应该能够测试是否需要这样做。您在终端中运行sudo modprobe -r ndiswrapper | sudo modprobe ndiswrapper,然后 LED 亮起。
    • 6
  2. Lukashka
    2013-03-05T15:18:09+08:002013-03-05T15:18:09+08:00

    我正在运行 Ubuntu 12.04,在搜索这些论坛失败后,我已经为我的 AE1200 安装了驱动程序并且它工作正常。

    这是我的做法:

    首先,安装 ndiswrapper 并确保同时安装 ndiswrapper-common 和 ndiswrapper-dkms。

    然后,下载设备的 XP 驱动程序:http: //support.linksys.com/en-us/support/adapters/AE1200

    解压缩 zip 并cd到文件夹(可能是 xp)。如果此时您尝试使用 ndiswrapper 安装驱动程序,您将收到“找不到“Linksys_AE1200.files.NTamd64”部分”错误。要解决此问题,请编辑 bcmwlhigh5.inf 文件。找到如下所示的部分:

    [Linksys_AE2500.files.NT]
    AE2500xp.sys,,,6
    

    在它下面,添加以下内容:

    [Linksys_AE1200.files.NTamd64]
        AE1200xp64.sys,,,6
    
    [Linksys_AE2500.files.NTamd64]
        AE2500xp64.sys,,,6
    

    保存并关闭。然后,如果您已经尝试使用 ndiswrapper 安装驱动程序,则需要将其删除,请运行:

    sudo ndiswrapper -e bcmwlhigh5
    

    然后再次安装:

    sudo ndiswrapper -i bcmwlhigh5.inf
    

    验证:

    sudo ndiswrapper -l
    

    现在插入 USB 设备,蓝灯应该会亮起。

    我可能是错的,但我认为这意味着编写这些 .inf 文件的人忘记包含这些行,我觉得这很有趣。

    ** 12.10 的更新 - 如果您安装 ndiswrapper-dkms,它将失败并且您将开始收到系统错误。按照此处的解决方案解决: https ://bugs.launchpad.net/ubuntu/+source/ndiswrapper/+bug/1023645/comments/3

    作为旁注,他引用的源代码是提取的 tar.gz 的“驱动程序”目录中的所有内容

    此外,您还需要运行:

    sudo dkms remove ndiswrapper/1.57 --all
    

    和

    sudo dkms uninstall ndiswrapper/1.57
    
    • 3
  3. Best Answer
    sarnold
    2012-02-01T14:08:52+08:002012-02-01T14:08:52+08:00

    思科似乎并不关心在该特定设备上支持 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
    

    这无法显示的一件事是驱动程序质量  ——它因驱动程序和设备而异。没有什么可做的,只需通过网络搜索您感兴趣的特定设备,看看人们是否普遍有成功或抱怨——知道大多数人会报告抱怨,但他们的设备工作正常。

    • 1
  4. Axel A. García
    2015-01-21T15:52:42+08:002015-01-21T15:52:42+08:00

    我遵循了@Lukashka的说明以及此处的建议:安装驱动程序(西班牙语),它适用于 Ubuntu 14.10:

    他们说:

    1.安装ndiswrapper:

    sudo aptitude install ndiswrapper-common ndiswrapper-modules-1.9 ndiswrapper-utils-1.9
    

    2. 安装驱动:

    转到 linksys 页面并下载 xp 的驱动程序,然后如果您使用的是 Ubuntu 64 位,请按照@Lukashka的说明进行操作

    然后在我们使用的下载文件夹中:

    sudo ndiswrapper -i bcmwlhigh5.inf
    

    然后我们确保已安装:

    sudo ndiswrapper -l
    

    如果有错误,那么我们需要卸载(sudo ndiswrapper -e bcmwlhigh5)然后修复错误(例如下载其他文件)并重新安装。

    3.加载ndiswrapper模块:

    对系统:

    sudo depmod -a
    sudo modprobe ndiswrapper
    

    WIFI USB接口激活时:

    sudo ndiswrapper -m
    

    当 Ubuntu 启动时(添加ndiswrapper为新行):

    sudo gedit /etc/modules
    

    然后检查您的连接,它应该列出您的设备。

    • 1
  5. Nuno Machado
    2013-08-31T08:30:32+08:002013-08-31T08:30:32+08:00

    只是为了让社区知道 Linksys AE1200 可以像在 Windows 中一样完美运行。

    但是,我必须通知,修改过的 XP 驱动程序,上面发布的其他评论,在 WPA2 路由器上不起作用,我找到了解决方法,找到了未改动的 WinXP 驱动程序,并启动并运行。

    是通过以下方式做到的:

    从以下位置下载未修改的 XP 驱动程序: http ://drivers.softpedia.com/dyn-postdownload.php?p=159439&t=0&i=1

    通过终端安装ndisgtk和ndiswrapper-dkms打包 ==>sudo apt-get install ndisgtk && sudo apt-get install ndiswrapper-dkms

    提取从上面的链接下载的压缩 WinXP 驱动程序。

    从菜单中打开 Windows 无线驱动程序,选择bcmwlhigh5.inf文件并安装驱动程序。

    重新启动只是为了确定并最终让它工作。

    我目前正在运行 Lubuntu,但是,我假设在 Ubuntu 和 Ubuntu 衍生产品中,不需要添加 ndiswrapper,/etc/modules因为 Lubuntundiswrapper是由内核默认加载的。

    希望这对任何人都有帮助,设置 Cisco Linksys AE1200 USB 无线加密狗工作的简单无忧的方法,无需太多终端命令,对于经验不足的用户!

    编辑:如果您处于无法以任何方式重新启动的情况,则在驱动程序安装后,蓝色 LED 应立即亮起,您可以立即开始使用 wi-fi 加密狗。

    • 0

相关问题

  • 在哪里可以找到 Brother HL-2170W 64 位打印机驱动程序?

  • 设置 LAMP 堆栈的最简单方法是什么?

  • 我应该在哪里安装 sagemath?

  • How do I install Adobe Flash player?对于 11.10 及更高版本明确修复 11.10 上的 64 位 Flash

  • 如何设置软件中心为非 root 用户安装软件?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何运行 .sh 脚本?

    • 16 个回答
  • Marko Smith

    如何安装 .tar.gz(或 .tar.bz2)文件?

    • 14 个回答
  • Marko Smith

    我需要什么命令来解压缩/提取 .tar.gz 文件?

    • 8 个回答
  • Marko Smith

    如何列出所有已安装的软件包

    • 24 个回答
  • Marko Smith

    无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗?

    • 25 个回答
  • Marko Smith

    更改文件夹权限和所有权

    • 9 个回答
  • Martin Hope
    EmmyS 我需要什么命令来解压缩/提取 .tar.gz 文件? 2011-02-09 14:50:41 +0800 CST
  • Martin Hope
    Ivan 如何列出所有已安装的软件包 2010-12-17 18:08:49 +0800 CST
  • Martin Hope
    La Ode Adam Saputra 无法锁定管理目录 (/var/lib/dpkg/) 是另一个进程在使用它吗? 2010-11-30 18:12:48 +0800 CST
  • Martin Hope
    David Barry 如何从命令行确定目录(文件夹)的总大小? 2010-08-06 10:20:23 +0800 CST
  • Martin Hope
    jfoucher “以下软件包已被保留:”为什么以及如何解决? 2010-08-01 13:59:22 +0800 CST
  • Martin Hope
    David Ashford 如何删除 PPA? 2010-07-30 01:09:42 +0800 CST

热门标签

10.10 10.04 gnome networking server command-line package-management software-recommendation sound xorg

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve