I also have the same problem as you, since i have the same card.
But don't dispair, just follow this instructions based on information i've found here in the forum. Credits to
rikd.
Atention: I did install Sabayon to the hard drive.. I didn't try with the LiveCD.
First bring out the konsole and enter 'su' and your root password
then you must edit the /etc/conf.d/wireless file
I use nano, so on console windows type:
- Code: Select all
nano /etc/conf.d/wireless
goto to the last line and paste this code:
(change YOUR_ESSID to your ESSID)
- Code: Select all
# Set the ESSID to the network ID
essid_wlan0="YOUR_ESSID"
# Using Managed Mode (not Adhoc)
mode_wlan0="managed"
# Ensure I only use my ESSID
preferred_aps=( "YOUR_ESSID" )
# Force the order
associate_order="forcepreferredonly"
# Set the key for YOUR_ESSID to "open" and the wep key to an HEX String
key_YOUR_ESSID="open 'HEXSTRING' "
#I use channel number 1 but you are free to change it to your channel
channel_wlan0="1"
Time to save (CTRL+O) and exit (CTRL+X)
Now we are gonna put the next line in /etc/conf.d/net (use again nano)
Search for:
- Code: Select all
config_wlan0=( "dhcp" )
and put the next line above it:
- Code: Select all
iface_wlan0="dhcp"
Save it and exit
Now we must remove NetworkManager (because it don't play well with our card). On konsole type:
- Code: Select all
# rc-update del NetworkManager
# rc-update del dhcdbd
Then make sure you have the init script for our card (/etc/init.d/net.wlan0)
You can type:
- Code: Select all
# ls /etc/init.d/net.wlan0
and it must show:
- Code: Select all
/etc/init.d/net.wlan0
If it doesn't exist, just softlink the net.lo
- Code: Select all
ln -s /etc/init.d/net.lo /etc/init.d/net.wlan0
Now add to the default runlevel
- Code: Select all
rc-update add net.wlan0 default
Finally just bring up wlan0 by:
- Code: Select all
/etc/init.d/net.wlan0 restart
Hope that helped...