Here's a way to ID the chipset
1. Run "/sbin/lspci -v |grep Wireless"
You'll get something like this:
03:03.0 Network Controller: Intel Corp. PRO/Wireless 2200BG (Rev 05)
All you're interested is the first part that tells where the device is on the bus. In my case 03:03.0. Next:
2. "/sbin/lspci -n 03:03.0"
You'll get something like this:
03.03.0 Class 0280 8086:4220 (Rev 5)
The 8086:4220 part IDs the chipset manufacturer. In my case the manufacturer is Intel.
3. Now go to
http://ndiswrapper.sourceforge.net/m...index.php/List and look for chipset ID you discovered above. It will tell you exactly what driver you need to download and give you a link to it.
Also, check the manufacturer's website (in my case, Intel) as they may have better ready-made drivers and instructions on how to install them.
In some cases your need firmware as well. Since wifi cards are transmitters and share the spectrum with other services the manufacturer may be required to certify that the card can not interfer. That's why we have to jump through some hoops to get the cards to work.
Dennisk