Hey guys,
I wasted a day of my project time trying to connect an ubuntu feisty box without internet to a wireless network. Since Ubuntu doesn’t include drivers for this network interface and since you won’t find any on the Linksys page as they don’ support linux operating systems you will need to do the following:
Find an empty cd /dvd or usb stick. Find and download the following packages for ubuntu feisty:
ndiswrapper-common
ndiswrapper-utils
Then go to: http://floppyjoes.homeip.net/phpBB2/viewtopic.php?t=21 and download the drivers at the end and add them to the medium you are using. Then take that medium (cd / dvd/ usb stick) to your ubuntu machine. When mounted run the common and utils packages. They end in .deb so ubuntu will pick them up as installation packages. Install the packages and then go to the command line and run : sudo ndiswrapper to see if the command is available. The rest of the instructions can be followed from floppyjoes page above starting from the begining and skipping the part about getting ndiswrapper.
Remember that the default driver does not work the way it should so we need to go through all this process.
Thats all! Let me know if you have any problems with this!
UPDATE:
It appears to be something to be proud of if you manage to get wifi working on any linux distro
Well the above kind of stopped working but i have an update on this issue. This is what i did:
- Firstly have a look at http://offog.org/kentservices.html
- Then also have a look at: http://ubuntuforums.org/showthread.php?p=1455704#post1455704
- So in other words edit the /etc/network/interfaces file and under your wlan0 interface or whatever it might be add the following
- wpa-driver wext #from what i understand this is the generic driver which covers most cards around
- wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
- Now go and create a file under /etc/wpa_supplicant/ named wpa_supplicant.conf
- you can use the touch command to create the file or just go straight with vi or pico/nano and create it
- Then add the following:
- # this is the setup for the wireless network @ kent
network= {
ssid=”eduroam”
key_mgmt=WPA-EAP
eap=PEAP
identity=”***”
password=”***” }
- the restart your network service using: /etc/init.d/networking restart
One thing i did before this was also update the network manager used in Ubuntu 7.04 Feisty from here: http://ubuntuforums.org/showpost.php?p=2663064&postcount=88 . If you have networking via ethernet and a cable you are in luck. If not, download all dependancies for the packages and put them somewhere. WIFI on ubuntu using wpa is NOT easy and am guessing each problem has a unique solution