Intel 2200BG无线网卡驱动

Intel 2200BG无线网卡驱动

Intel 2200BG我正在尝试让我的笔记本电脑上的无线网卡正常工作Acer Travelmate 4002WLMI

到目前为止我尝试过:

$ sudo lshw -C network
*-network:1
       description: Wireless interface
       product: PRO/Wireless 2200BG [Calexico2] Network Connection
       vendor: Intel Corporation
       physical id: 4
       bus info: pci@0000:02:04.0
       logical name: eth1
       version: 05
       serial: 00:0e:35:b0:a7:88
       width: 32 bits
       clock: 33MHz
       capabilities: pm bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=ipw2200 driverversion=1.2.2kmprq firmware=ABG:9.0.5.27 (Dec 12 2007) latency=64 link=no maxlatency=24 mingnt=3 multicast=yes wireless=IEEE 802.11bg
       resources: irq:10 memory:d0208000-d0208fff

$ sudo modprobe ipw2200 
$ dmesg | grep ipw
[   12.087836] libipw: 802.11 data/management/control stack, git-1.1.13
[   12.087839] libipw: Copyright (C) 2004-2005 Intel Corporation <[email protected]>
[   12.209561] ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, 1.2.2kmprq
[   12.209566] ipw2200: Copyright(c) 2003-2006 Intel Corporation
[   12.335295] ipw2200 0000:02:04.0: PCI INT A -> Link[LNKB] -> GSI 10 (level, low) -> IRQ 10
[   12.335329] ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection
[   12.652808] ipw2200: Radio Frequency Kill Switch is On:
[   12.667645] ipw2200: Detected geography ZZM (11 802.11bg channels, 0 802.11a channels)
[   55.212245] ipw2200: Failed to send POWER_MODE: Command timed out.
[   57.368256] ipw2200: Failed to send POWER_MODE: Command timed out.

或者

sudo apt-get install linux-headers-$(uname -r) build-essential
wget http://aceracpi.googlecode.com/files/acer_acpi-0.11.1.tar.bz2
tar -xvjf acer_acpi-0.11.1.tar.bz2
cd acer_acpi-0.11.1
sudo make # this command never ends

或搜索这里

有用的信息:

$ uname -r
3.2.0-24-generic

$ sudo rfkill list
0: phy0: Wireless LAN
        Soft blocked: no
        Hard blocked: no

distribution : Ubuntu 12.04 LTS

你知道如何解决这个问题吗?我是否应该进一步尝试让我的无线卡正常工作,或者这是没有希望的,我应该放弃它?

答案1

ipw2200卡在 Linux 下应该可以正常工作(从你运行 Ubuntu 的内核来看?)。驱动程序也是正确的,而且似乎也没有抱怨缺少固件(您应该在/lib/firmware/调用中包含一些文件ipw2*.ko)。

我记得旧的 TravelMate(具有相同的 Intel 卡)有一个硬件开关可以关闭 WiFi。即使rfkill报告“没有”,你检查过吗?

顺便说一句,你不需要aceracpi,你的内核应该有acer-wmi哪个是 的内核后继者aceracpi

答案2

您没有使用正确的驱动程序

您的无线卡依赖哪个内核驱动程序?您日志中的所有内容似乎都表明您正在使用ipw,根据这个维基百科页面,适用于 Intel PRO/Wireless 2100,但不适用于 Intel 2200 BG。尝试使用iwi.

作为旁注,从我在你的日志中读到的内容Radio Frequency Kill Switch is On:您是否安装rfkill并检查了交换机的当前状态?文档这里

相关内容