Posts: 4
Brainwright
Joined: 17 Jul 2013
#1
I'm having trouble installing the ipw2200 drivers on my old laptop.

Apt-get can't find the file, and the only other source I have is a .tgz file.

So what do I need to do to use the .tgz file?

Normally, I'd try to compile and see what I get, but that doesn't seem to be an option here. What am I missing?
Posts: 1,308
BitJam
Joined: 31 Aug 2009
#2
The ipw2200 driver is part of the kernel which is way you can't install it as a package. It is already in antiX:

Code: Select all

$ find /lib/modules -name ipw2200.ko
/lib/modules/3.7.10-gnu-antix.3-486-smp/kernel/drivers/net/wireless/ipw2x00/ipw2200.ko
You can see if it is already loaded with"lsmod | grep ipw". You can load it manually (as root) with:

Code: Select all

# modprobe ipw2200
There have been two recent threads about this module.


========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"antix.freeforu ms.org/viewtopic.php?f=49&t=4477"
linktext was:"The most recent"
====================================
shows you how to install the firmware. Some people need it and some don't.


========= SCRAPER REMOVED AN EMBEDDED LINK HERE ===========
url was:"antix.freeforu ms.org/viewtopic.php?f=16&t=4470"
linktext was:"The older thread"
====================================
tells you how to get the ipw2200 driver to automatically load at boot time. The instructions there for getting the firmware are incorrect. You should follows SamK's instructions in the more recent thread. For one person, the module loaded automatically but they needed to install the firmware. For the other person, the module didn't load automatically but once it was loaded they didn't need the firmware.

First make sure the module is loaded. If not, load it. If that solves your problem then follow instructions in the older thread for making it load automatically at boot time. If the module is already loaded or if loading it does not solve your problem then you should install the firmware as described in the most recent thread.
Posts: 4
Brainwright
Joined: 17 Jul 2013
#3
Thanks a lot for your help.

I finally got it working, and the diagnostic commands shown in the instructions have given me a good idea of how to solve and future problems.