tempestuous
Group: Members
Posts: 259
Joined: Aug. 2004 |
|
Posted: Oct. 06 2005,12:52 |
|
To install the driver package, in EmelFM select atmelwlandrivers.dsl and press "MYDSL" ## or the manual way - open an xterminal sudo /etc/init.d/mydsl-install /<mylocation>/atmelwlandrivers.dsl
sudo su ## now we need to run "depmod", which is easy with a HD install, ## but difficult with the liveCD because much of the filesystem is read-only. ## map the new modules depmod ## you will see "*** Unresolved symbols" errors for some modules ## don't worry, these errors are for other unrelated modules ## load the drivers modprobe pcmf502re # or one of the other versions ## if no error messages, this should create a network interface, atml0 ## can check this by running "ifconfig -a" ## now set up the wireless network iwconfig atml0 essid MY_ESSID key 1234567890 mode Managed
## now standard network stuff - ## for automatic IP pump -i atml0 ## or for static IP ## modify /etc/resolv.conf to include your nameservers, then - ifconfig atml0 192.168.0.xx broadcast 192.168.0.255 netmask 255.255.255.0 route add default gw 192.168.0.1 atml0 # or whatever your router's IP is
|