LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 12-17-2006, 10:57 AM   #1
Psyco26
Member
 
Registered: Dec 2006
Location: Sweden
Distribution: Slackware 11.0
Posts: 33

Rep: Reputation: 15
Question Installing RT2500


Hi

Becuse i got loads of help on my last thread i will give it a go again

When i run lspci i get :
00:0d.0 Network controller: RaLink RT2500 802.11g Cardbus/mini-PCI (rev 01)

Ive downloaded the rt2500-1.1.0.b4_2.4.31-i486-1mp.tgz and did a tar on them, now because im a beginner what do i do next , gratefull for all the help i get, ive looked around the forum but still im stuck, hope someone can help me from here, thx.
 
Old 12-18-2006, 03:58 AM   #2
reddazz
LQ Guru
 
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298

Rep: Reputation: 77
You could just download the drivers from serialmonkey and just do "make && make install" as root.
 
Old 12-18-2006, 06:48 AM   #3
Psyco26
Member
 
Registered: Dec 2006
Location: Sweden
Distribution: Slackware 11.0
Posts: 33

Original Poster
Rep: Reputation: 15
Ive tried to follow the readme make and make install but nothing happens, any pointers please, im really beginner @ this....
 
Old 12-18-2006, 07:43 AM   #4
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
What do you mean "nothing happens"? Surely something happens. If you get any error messages or anything, please post them.
 
Old 12-18-2006, 08:14 AM   #5
Psyco26
Member
 
Registered: Dec 2006
Location: Sweden
Distribution: Slackware 11.0
Posts: 33

Original Poster
Rep: Reputation: 15
Ok i followed the instructions and typed :
a. tar -xvzf rt2500-x.x.x.tar.gz
go to "./rt2500-x.x.x/Module" directory.

b. make # compile driver source code

c. make install # installs kernel module driver

I got some errors but will type them as soon as i come home becuase i dont have them now.
Sorry beginner so im really lost...

Last edited by Psyco26; 12-18-2006 at 08:24 AM.
 
Old 12-18-2006, 08:27 AM   #6
deroB
Member
 
Registered: Dec 2005
Location: Sydney, Australia
Distribution: Arch Linux
Posts: 208

Rep: Reputation: 30
you should goto the folder rt2500-1-1.0-b4/Module (not /lib/modules)

goto the folder where you downloaded the file rt2500-1.1.0-b4.tar.gz then:
Code:
tar -xf rt2500-1.1.0-b4.tar.gz
cd rt2500-1.1.0-b4/Module
make

(do below as root)
make install
if this works you have a few options of how to get online,
try this first (as root)

Code:
modprobe rt2500
ifconfig ra0 up
iwconfig ra0
and post what you get.....

good luck

Last edited by deroB; 12-18-2006 at 08:30 AM.
 
Old 12-18-2006, 08:34 AM   #7
docalton
Member
 
Registered: Dec 2002
Location: St Louis, MO
Distribution: Arch Linux
Posts: 99

Rep: Reputation: 15
Ok... here are the basic steps.

Untar the archive, but it looks like you have done this:
tar -xvzf rt2500-x.x.x.tar.gz

Now, go into the directory that was created when you executed that command:
cd rt2500-x.x.x/Module

Now, do the make:
make

Then, if no errors occurred install the module into the proper directory by doing:
make install

You should then be able to load that module into the kernel by doing:
modprobe rt2500 (I think that is the module name)

I hope this helps

Last edited by docalton; 12-18-2006 at 08:35 AM.
 
Old 12-18-2006, 08:44 AM   #8
Psyco26
Member
 
Registered: Dec 2006
Location: Sweden
Distribution: Slackware 11.0
Posts: 33

Original Poster
Rep: Reputation: 15
Ok when unpacking the rt2500-1.1.0.b4_2.4.31-i486-1mp.tgz i get, etc, install, lib and usr directories, maybe that is the problem...But will try the rest when i come home, thx again.
 
Old 12-18-2006, 08:51 AM   #9
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Is this .tgz file a Slackware package? If so, you can install it with "installpkg filename". The instructions given above are for building the source code.
 
Old 12-18-2006, 08:52 AM   #10
deroB
Member
 
Registered: Dec 2005
Location: Sydney, Australia
Distribution: Arch Linux
Posts: 208

Rep: Reputation: 30
ahh, rt2500-1.1.0.b4_2.4.31-i486-1mp.tgz looks like a binary package.

It may work, but i suggest you download and try "Latest BETA rt2500 driver: v1.1.0-b4" found here
http://rt2x00.serialmonkey.com/wiki/...itle=Downloads



EDIT. gotta be a quick typist on the forum!

Last edited by deroB; 12-18-2006 at 08:55 AM.
 
Old 12-18-2006, 09:42 AM   #11
Psyco26
Member
 
Registered: Dec 2006
Location: Sweden
Distribution: Slackware 11.0
Posts: 33

Original Poster
Rep: Reputation: 15
Thx again, will try it asap when i come home, guess that will solve the problem, thx again ALL for the good help
 
Old 12-18-2006, 03:01 PM   #12
Psyco26
Member
 
Registered: Dec 2006
Location: Sweden
Distribution: Slackware 11.0
Posts: 33

Original Poster
Rep: Reputation: 15
Thx guys everything seems to be working fine now, the only thing is everytime i reboot i need to do
modprobe rt2500 for my wireless
and modprobe sk98lin for my eth0 how do i save them so i have it permanent everytime i reboot??? thx again for the help @ least its up and running now
 
Old 12-18-2006, 03:04 PM   #13
Nylex
LQ Addict
 
Registered: Jul 2003
Location: London, UK
Distribution: Slackware
Posts: 7,464

Rep: Reputation: Disabled
Add "/sbin/modprobe rt2500" and "/sbin/modprobe sk98lin" to your /etc/rc.d/rc.modules.
 
Old 12-19-2006, 10:11 AM   #14
erklaerbaer
Member
 
Registered: Mar 2006
Posts: 381

Rep: Reputation: 30
better: edit rc.inet1.conf for your ra0 device and run
' echo "alias ra0 rt2500" > /etc/modprobe.d/rt2500 '

have a look at rc.wireless.conf for your wireless settings(essids, etc)
(maybe there is a kde program for that, too?)

btw: here you can find a packages for the standard kernels + slackbuild

Last edited by erklaerbaer; 12-19-2006 at 10:15 AM. Reason: btw..
 
Old 12-20-2006, 02:37 AM   #15
Psyco26
Member
 
Registered: Dec 2006
Location: Sweden
Distribution: Slackware 11.0
Posts: 33

Original Poster
Rep: Reputation: 15
Ive added "/sbin/modprobe rt2500" and "/sbin/modprobe sk98lin" to my /etc/rc.d/rc.modules but still only rt2500 that works on boot, am i doing something wrong , where do i have to put the commands does it matter excatly where??
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
installing rt2500 in Suse 10.1 SVwander Linux - Wireless Networking 2 12-27-2006 01:46 PM
Installing the rt2500 driver rorymacneill09 Linux - Wireless Networking 5 07-13-2006 07:47 AM
Need help with installing RT2500 TobyWatkins1 Fedora 2 09-18-2005 09:55 AM
Problem Installing Rt2500 Wireless Network mystikangel Linux - Newbie 3 09-04-2005 11:05 AM
Installing rt2500 on fedora Core 4 bobinglis Fedora 4 07-30-2005 12:49 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:07 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration