Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 30th December 2006, 09:02 PM
MicahCarrick's Avatar
MicahCarrick Offline
Registered User
 
Join Date: Oct 2004
Posts: 119
Installing RaLink RT2500 Wireless drivers

Had a bit of trouble with this at first so I thought I would share how I got it working. I bought a cheapie wifi card from TigerDirect.com called a Tornado 122 which uses the RaLink RT2500 chipset.

The specifics are:

/sbin/lspci
Code:
03:08:0 Network Controller: RaLink RT2500 802.11g Cardbus/mini-PCI (rev 01)
/sbin/lspci -n
Code:
03:08:0 1814:0201 (rev 01)
I found Linux drivers on the ralink's website, however, I found this project to be a bit easier (handles some of the modprobe stuff and what have ya): http://rt2x00.serialmonkey.com/wiki/...itle=Main_Page
The file I used was: rt2500-1.1.0-b4.tar.gz

So first thing, I downloaded the devel package for my kernel:
Code:
yum install kernel-devel.x86_664
Then I extracted the tarbal and went into the module directory:
Code:
tar -xzf rt2500-1.1.0-b4.tar.gz
cd rt2500-1.1.0-b4/Module
Now, this code uses a deprecated include so I had to create a shell script to change all occurances of "linux/config.h" to "linux/autoconf.h". This shell script was put into a folder called "scripts" in my home directory.

~/scripts/fix_rt2500_driver.sh
Code:
#!/bin/bash
for fl in *.*; do
mv $fl $fl.old
sed 's/linux\/config.h/linux\/autoconf.h/g' $fl.old > $fl
rm -f $fl.old
done
I then ran the script in the Modules directory:
Code:
sh ~/scripts/fix_rt2500_driver.sh ./
And now the module builds fine:
Code:
make
The final step is to install it with the fedora-specific option:
Code:
make install-fedora
Should be all ready to setup now. You can do so in GNOME from 'System' > 'Administration' > 'Network'. Click 'New', select 'Wireless connection', and choose the 'RaLink RT2500 802.11g Cardbus/mini-PCI (wlan0)' and then just 'Forward' your way through the rest of the druid.

Cheers.
__________________
Micah Carrick
www.micahcarrick.com
Reply With Quote
  #2  
Old 30th December 2006, 09:29 PM
sideways's Avatar
sideways Offline
Retired User
 
Join Date: Oct 2004
Location: London, UK
Posts: 4,999
cool, although the script is a bit of overkill

linux/config.h only appears in Module/rt_config.h line 58, and the comment says you can just delete it which is all you have to do. config.h was removed in FC6 (well actually before that, but definitely gone with kernel supplied in FC6).

I use this wireless driver and find it pretty stable.

Last edited by sideways; 30th December 2006 at 10:47 PM.
Reply With Quote
  #3  
Old 30th December 2006, 10:25 PM
Thetargos's Avatar
Thetargos Offline
Registered User
 
Join Date: May 2004
Location: Mexico City, Mexico
Age: 35
Posts: 4,418
Actually the make install-fedora argument is no longer necessary. The installation will run depmod -aq to register the new modules just fine now.
__________________
If ain't broken, don't fix it! :eek:
If can be improved, go for it! :cool:

FedoraForum Community forums lurker.
Fedora user since RHL 5.2 :cool:

Systems: Laptop, Main System, Netbook.
Reply With Quote
  #4  
Old 30th December 2006, 10:32 PM
MicahCarrick's Avatar
MicahCarrick Offline
Registered User
 
Join Date: Oct 2004
Posts: 119
Good to know. Thanks!
__________________
Micah Carrick
www.micahcarrick.com
Reply With Quote
  #5  
Old 30th December 2006, 10:42 PM
Thetargos's Avatar
Thetargos Offline
Registered User
 
Join Date: May 2004
Location: Mexico City, Mexico
Age: 35
Posts: 4,418
That behavior, however is only introduced in the b4 version, the b3 version still requires the make install-fedora argument (even though I doubt anyone will attempt to install -b3 now, I think it is important to note that)
__________________
If ain't broken, don't fix it! :eek:
If can be improved, go for it! :cool:

FedoraForum Community forums lurker.
Fedora user since RHL 5.2 :cool:

Systems: Laptop, Main System, Netbook.
Reply With Quote
  #6  
Old 23rd May 2007, 03:51 AM
scuac's Avatar
scuac Offline
Registered User
 
Join Date: May 2006
Posts: 46
When I first got my current computer a year ago, I first tried to install FC5 with a Ralink RT2500 based card. I just simply could not get it to work no matter what I tried. I gave up and installed Windows at that point. Now one year later it appears that the people at serialmonkey have advanced a bit with the driver (I did try their driver back then with no luck). I will give it another shot to install it on FC7 this time. Do the above instructions apply to FC7 x86_64 or are only for FC6?

Also, will they ever make RT2500 cards work out of the box on FC, or provide some easy rpm one can yum in the future? I found the whole wireless support on Linux always a detracting factor.
Reply With Quote
  #7  
Old 23rd May 2007, 04:21 AM
A.Serbinski Offline
Registered User
 
Join Date: Jul 2006
Posts: 1,123
Then quit buying rt2500 cards and stick to Atheros. Couldn't be easier.
Reply With Quote
  #8  
Old 23rd May 2007, 04:25 AM
A.Serbinski Offline
Registered User
 
Join Date: Jul 2006
Posts: 1,123
Notice the wireless plans for F7; http://fedoraproject.org/wiki/Releas...relessFirmware
Reply With Quote
Reply

Tags
drivers, installing, ralink, rt2500, wireless

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Fedora 10 - Wireless issue with RaLink RT2500 and DHCP silviap EOL (End Of Life) Versions 5 31st May 2010 02:43 PM
How to get Ralink RT2500 drivers and get them working clearer Fedora Core 5 - Dev 1 13th March 2006 12:34 AM
Ralink RT2500 with FC4 nniehoff Hardware & Laptops 3 28th June 2005 05:14 PM
Ralink rt2500 Wireless card cannot get IP address henkvanderes Servers & Networking 1 7th April 2005 02:27 AM


Current GMT-time: 16:33 (Thursday, 23-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat