Ralink Help For Ubuntu Feisty Part 2
- 4
- Add a Comment
Part 1 | Part 2
As we discussed last time, getting the once working RT2500 chipset working again is obtainable after all. But even with all of this, there are still some remaining questions that many of you will have. They include:
- Obtaining a IP address from your router without any issues.
- Is all of this also needed within the off-shoot distro, Linux Mint?
Today, I will break this down for you, in addition to opening up the line for any questions that you might have to get your wireless Internet working with Feisty.
Starting off with the grabbing of an IP address.
In both Ubuntu Feisty and Linux Mint, I have had instances where getting an IP address assigned was problematic with certain routers. Generally this occurs with WiFi Radar alerting me that an IP address cannot be given and to try again.
So here’s the deal, because WiFi Radar run from the command line (see previous article for executable) provides some great detail as to what is happening in the background, troubleshooting is a lot easier than the default ZeroConf nonsense.
Still no love with the assignment of a valid IP? Keep trying WiFi Radar. You may even find that restarting the computer or ejecting the card itself will yield some help with getting that IP assigned. I have found this helpful with troublesome hotel wireless in some instances.
If it is your router on the other hand, try restarting the it or even adding an extra allowable IP address in the 0-whatever range of numbers to be assigned. Often, this will save you a lot of headaches.
The Linux Mint side of the fence.
For the most part, Linux Mint is superior to when it comes to wireless card support. So you may find that you are able to get Network Manager to display your wireless card and that you can even see the available networks - but as of the beta for Linux Mint Cassandra, RT2500 chipsets were still not actually connecting. So you may wish to use part 1 to this series for some help there.
Also, with the home network, you should find that once you connect with the help from part 1, your notebook should remember your network settings from this point with each boot.
Do you have an Ubuntu, Linux Mint, Simply Mepis, Linspire/Freespire or PCLinuxOS related question? Perhaps you are just burnt out on writing on the walls with crayons? Whatever the comments may be, drop me a line, and you too can “Just Ask Matt - Linux Edition!
[tags]linux, network adapter,wireless adapter[/tags]

4 Comments
Iain Cheyne
June 19th, 2007
at 7:00am
Unfortunately WPA is a *must* for me - as it should be for everyone now that WEP can be broken in under a minute.
I was able to get WPA going under Edgy with some help from https://help.ubuntu.com/community/WifiDocs/Driver/RalinkRT2500. For now, I am still staying with Edgy.
Matt Hartley
June 20th, 2007
at 6:23am
According to Frank in the other thread:
Frank - June 16, 2007 @ 4:52 pm
You can set up WPA TKIP with Ralink 2500. It is pretty easy. You have to modify your /etc/network/interfaces file
Mine looks like this
This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
auto ra0
#WPA Stuff
iface ra0 inet dhcp
pre-up ifconfig ra0 up
pre-up ifconfig ra0 down
pre-up ifconfig ra0 up
pre-up ifconfig ra0 down
pre-up iwconfig ra0 essid “frank”
pre-up iwconfig ra0 mode managed
pre-up iwpriv ra0 set AuthMode=WPAPSK
pre-up iwpriv ra0 set EncrypType=TKIP
pre-up iwpriv ra0 set WPAPSK=”Your Password here”
pre-up ifconfig ra0 up
Laerte
July 24th, 2007
at 6:24pm
Yes, it works in my ubuntu feisty!!
I removed the network-manager, than installed a Ralink card as it is taught in
I’ve been using WEP protocol, by the way.
So, after having checked if the interface was “up” with iwconfig command, I execute the following commands:
root@ubuntu2:~$ iwconfig ra1 essid mynetname key myHEXkey
root@ubuntu2:~$ dhclient ra1
Finally, I adjust a script in order to start up the wireless conection in boot initialization, as follows:
1. Edit /etc/initd/rt61up and write these lines down:
#!/bin/sh
echo “rising ra1 card”
iwconfig ra1 essid mynetname key myHEXkey
dhclient ra1
2. Give x permission
$ cd /etc/init.d
$ sudo chmod +x rt61up
3. Create a symbolic link
$ cd /etc/rcS.d
$ sudo ln -s /etc/init.d/rt61up S33rt61up
Laerte
July 24th, 2007
at 6:37pm
the link missed on previous “thoughts” is https://help.ubuntu.com/community/WifiDocs/Driver/RalinkRT61