LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 07-30-2006, 03:29 AM   #1
baikonur
Member
 
Registered: Oct 2005
Location: germany
Distribution: debian
Posts: 255
Blog Entries: 5

Rep: Reputation: 30
ipw2200 firmware problem


I've got problems getting my wireless adapter to work.
It's an intel pro wireless 2200; my laptop is an Asus a6q00v.
this is what dmesg tells me:
Code:
mpf@cvlaptop:/usr/src/linux$ dmesg | grep 2200
ipw2200: Intel(R) PRO/Wireless 2200/2915 Network Driver, git-1.1.1
ipw2200: Copyright(c) 2003-2006 Intel Corporation
ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection
ipw2200: ipw2200-bss.fw request_firmware failed: Reason -2
ipw2200: Unable to load firmware: -2
ipw2200: failed to register network device
ipw2200: probe of 0000:01:03.0 failed with error -5
k,I understand the firmware can't be loaded. I've been using the 2.4 firmware. Somewhere (might even be the sourceforge project page) I read that I should be using the 3.0 firmware for this particular driver. But when I gunzip the ipw2200-fw-3.0.gz archive to /lib/firmware, it doesn't expand to ipw--boot.fw, ipw--bss_ucode.fw, ipw--bss.fw, ipw--ibss_ucode.fw and the like, but to a single file called ipw2200-fw-3.0.
This is not what ipw2200.sourceforge.net/INSTALL tells me it should be like.
So I used the 2.4 firmware instaead. Unzips fine but still the same problem (dmesg output).
My firmware directory is /lib/firmware, according to /etc/hotplug/firmware.agent. I had to create that directory first.
So... is this a problem with the 3.0 firmware download (I downloaded it 2 times, same thing) or something else?
I don't think it's a kernel configuration issue, because I used the config file from: http://www.leufke.info/linux/asus/config-2.6.15,
which is from a guy who has exactly the same machine and appears to know what he's doing. Only difference: his config was for a 2.6.8.15 Kernel, I use it for a 2.6.8.17. I took it as is, only put in support for XFS, since that's what I'm running.

Any help would be much appreciated. I'm tired of booting into windows just to google around.

[Baikonur]

EDIT:: it wasn't the sourceforge page, it was right here

Last edited by baikonur; 07-30-2006 at 04:42 AM.
 
Old 07-30-2006, 08:45 AM   #2
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Either you didn't download the correct file or you didn't untar it correctly.

I downloaded the .tgz file. Unpack it with the command "tar xvzf <filename>"
 
Old 07-30-2006, 12:05 PM   #3
baikonur
Member
 
Registered: Oct 2005
Location: germany
Distribution: debian
Posts: 255

Original Poster
Blog Entries: 5

Rep: Reputation: 30
That did it!
I thought the file being a .gz-file would automatically mean it's not a tar archive.
(yeah, I'm a windows child... extensions still mean too much to me)
Now the card detects 11 access points, which means it definitely works (with the 3.0 firmware)!
All I have to do now is craft a proper /etc/network/interfaces file, I think, because
that doesn't show anything like wlan0 yet.
Thanks a lot, jschiwal!

EDIT:: YEAH!!! I just ran

iwconfig eth1 mode managed
iwconfig eth1 essid MYESSID

then edited my interfaces file, and ...

Quote:
Originally Posted by my_pc
cvlaptop:/home/mpf# ifup eth1
Internet Software Consortium DHCP Client 2.0pl5
Copyright 1995, 1996, 1997, 1998, 1999 The Internet Software Consortium.
All rights reserved.

Please contribute if you find this software useful.
For info, please visit http://www.isc.org/dhcp-contrib.html

Listening on LPF/eth1/00:15:00:3e:2b:39
Sending on LPF/eth1/00:15:00:3e:2b:39
Sending on Socket/fallback/fallback-net
DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 6
DHCPOFFER from 192.168.2.1
DHCPREQUEST on eth1 to 255.255.255.255 port 67
DHCPACK from 192.168.2.1
bound to 192.168.2.100 -- renewal in 43200 seconds.
thanks again!

Last edited by baikonur; 07-30-2006 at 12:35 PM.
 
Old 07-30-2006, 08:58 PM   #4
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
Just an FYI. There is a command called "file" that you can use to tell what a file is. After you used gunzip, you were left with a tar file. The -z option in the tar command says to extract using gunzip.
Code:
> file ipw2200-fw-3.0.tgz
ipw2200-fw-3.0.tgz: gzip compressed data, from Unix
> gunzip ipw2200-fw-3.0.tgz
> find ./ -cmin -1
./
./ipw2200-fw-3.0.tar
> file ipw2200-fw-3.0.tar
ipw2200-fw-3.0.tar: POSIX tar archive
 
Old 10-12-2006, 02:13 PM   #5
Rudhir
LQ Newbie
 
Registered: Oct 2006
Posts: 1

Rep: Reputation: 0
same problem

I have got the same problem as baikonur had in the first post.
I hav installed suse 10 ,kernel 2.6.13-15-default on my toshiba satellite A105 series laptop which has intel proset 2200 BG card. I see the eth1 interface on executing iwconfig with "no wireless extensions" on it. It gives no error when i run 'modprobe ipw2200'.
In the log messages the following message is seen

ipw2200: Detected Intel PRO/Wireless 2200BG Network Connection
ipw2200: ipw2200-bss.fw request_firmware failed: Reason -2
ipw2200: Unable to load firmware: -2
ipw2200: failed to register network device


i hav copied my all relevant firmware files (of package ipw-fw-2.4) in /usr/lib/hotplug/firmware directory because 'firmware.agent' file had this address.


my subsystem version is ieee80211-1.2.15 package

previously after removing all the ieee80211.h files i installed subsystem and driver with no error. after this i could see the completely configured interface with 'iwconfig'.but the os hanged when i tried to connect the wireless and afterwords it didnot even showed the interface eth1.

plz help me configure my wireless i need it urgently

even the entry in autoconf.h for kernel CONFIG_FW_LOADER = m

Last edited by Rudhir; 10-12-2006 at 02:26 PM.
 
  


Reply

Tags
ipw2200



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
ipw2200 firmware problem cemzafer Linux - Wireless Networking 4 05-12-2006 12:36 PM
ipw2200 firmware errors Poetics Linux - Networking 1 12-03-2005 05:04 AM
firmware problems with ipw2200 umichLinux Linux - Wireless Networking 11 03-30-2005 08:48 PM
Intel IPW2200 firmware problem on FC3 GerbilSoft Linux - Wireless Networking 2 01-06-2005 02:59 PM
IPW2200 Driver Firmware? Corallis Fedora 0 07-20-2004 08:18 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 08:55 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration