Just in case it is of interest top anyone.
Operating system is Suse 8.2, but this should work with most recent
distros of Linux.
You need to modprobe orinoco_cs , this is the driver that this card
uses.
Where your network configuration settings are , create a new file and
call it ifcfg-wlan-pcmcia-0 , with Suse this file is located in the
/etc/sysconfig/network/ directory, with redhat these files are
normally kept in the /etc/sysconfig/network-scripts/ directory, other
systems will probably differ, but a "locate ifcfg-" command should
find this info for you.
In this newly created file, add the following lines (everything
between the ---- marks.
-------------------------------------------------------------------------
BOOTPROTO='static'
BROADCAST='192.168.1.255'
IPADDR='192.168.1.133'
MTU=''
NETMASK='255.255.255.0'
NETWORK='192.168.1.0'
REMOTE_IPADDR=''
STARTMODE='hotplug'
UNIQUE=''
WIRELESS='yes'
WIRELESS_ESSID=''
WIRELESS_KEY=''
WIRELESS_MODE='Ad-hoc'
WIRELESS_NICK=''
WIRELESS_NWID=''
WIRELESS_CHANNEL='11'
---------------------------------------------------------------------------
Or you can download a copy from my website
http://www.bluestarlinux.com/wireless/ and download the file from
there.
Once this file is in place, stop your network ("/etc/init.d/network
stop" on Suse) rename the network file you have there, probably
ifcfg-eth0, and then stop pcmcia service ("/etc/init.d/pcmcia stop" on
Suse), then restart both services ("/etc/init.d/network start") and
then remove the pcmcia card and re-insert it, your card should be
working now.
Try pinging other machines on the network, try browsing ( I find this
much quicker now).
Hope this helps somebody.