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문서여기.

관련 정보