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 04-23-2002, 11:01 AM   #1
MikeeX
Member
 
Registered: Mar 2002
Distribution: Ubuntu 6.10
Posts: 165

Rep: Reputation: 30
Linksys Network Card


Here is the read me file >> http://linux.ucla.edu/pipermail/linu...ne/005441.html

----------

I have ran thru all of this and seemed like I did everything right, but I am still not able to get it working. When running /etc/rc.d/rc.modules I get the following errors.

pci-scan.o Command not found
tulip.o Command not found

Do i need to put like /sbin/modprobe before the pci-scan.o and the tulip.o ??

Also at bootup i get a depmod error. Anyone have any ideas?

TIA!!

PS: I just tried it again the "insmod tulip.o" and I get the following errors.

tulip.o: unresolved symbol _global_cli
tulip.o: unresolved symbol _global_save_flags
tulip.o: unresolved symbol _global_restore_flags

Last edited by MikeeX; 04-23-2002 at 11:07 AM.
 
Old 04-23-2002, 11:56 AM   #2
trusouthrnplaya
Member
 
Registered: Jun 2001
Location: (Cashville) Nashville, TN
Distribution: CentOS 4.0, Slackware 10.2,
Posts: 223

Rep: Reputation: 30
gotta download the hermes.config and put into ur pcmcia directory. Do a search on linksys and u should find the answer that u need.
 
Old 04-23-2002, 12:02 PM   #3
MikeeX
Member
 
Registered: Mar 2002
Distribution: Ubuntu 6.10
Posts: 165

Original Poster
Rep: Reputation: 30
This is a PCI network card, not pcmcia. Does this still apply?
 
Old 04-23-2002, 12:23 PM   #4
trusouthrnplaya
Member
 
Registered: Jun 2001
Location: (Cashville) Nashville, TN
Distribution: CentOS 4.0, Slackware 10.2,
Posts: 223

Rep: Reputation: 30
Sorry...I was thinkin' laptop, I think this might be ur problem I did a search and found this...this is quoted from one of finegans post helping another linux user with his linksys pci

Try: modprobe tulip.o
If that errors out, you're going to need to get fresher source and compile a new module.

To get it to compile, download all 4 of the files from the Scyld site that ssu4716 pinted out: pci-scan.c, pci-scan.h, kern_compat.h and tulip.c To find out what line to type to compile them, try :
tail pci-scan.c

after you type in the compile command, you should have a module called pci-scan.o. repeat this for tulip.c in order to get tulip.o. Then:

modprobe /directory_that_you_are_in/pci-scan.o
modprobe /directory_that_you_are_in/tulip.o

Then try ifconfig eth0 up to see if the card works. Honestly, if you can't get the module to just pop right in, it might not be worth fiddling with.
 
Old 04-23-2002, 12:25 PM   #5
trusouthrnplaya
Member
 
Registered: Jun 2001
Location: (Cashville) Nashville, TN
Distribution: CentOS 4.0, Slackware 10.2,
Posts: 223

Rep: Reputation: 30
Ohhh...I forgot the Scyld site he is talkin bout is here:
www.scyld.com/network/tulip.html
 
Old 04-23-2002, 12:38 PM   #6
MikeeX
Member
 
Registered: Mar 2002
Distribution: Ubuntu 6.10
Posts: 165

Original Poster
Rep: Reputation: 30
Awesome thanks. Let me go through all that and I'll let you know what happens!

Thanks again!
 
Old 04-23-2002, 01:05 PM   #7
MikeeX
Member
 
Registered: Mar 2002
Distribution: Ubuntu 6.10
Posts: 165

Original Poster
Rep: Reputation: 30
I dont see the new tulip.c file on that site to update.

Am I missing it somewhere.
 
Old 04-23-2002, 01:40 PM   #8
trusouthrnplaya
Member
 
Registered: Jun 2001
Location: (Cashville) Nashville, TN
Distribution: CentOS 4.0, Slackware 10.2,
Posts: 223

Rep: Reputation: 30
Wink

I believe if u download the rpm source it would be in that source package.

Anyway I also searched alittle harder than before and also found this very helpful link...linksys.com has a linux support website.


http://www.linksys.com/support/support.asp?spid=26
 
Old 04-23-2002, 04:10 PM   #9
MikeeX
Member
 
Registered: Mar 2002
Distribution: Ubuntu 6.10
Posts: 165

Original Poster
Rep: Reputation: 30
Geez, I have tried everything lol. And i still get those errors on the tulip.o file.

Any other suggestions?
 
Old 04-23-2002, 06:29 PM   #10
finegan
LQ Guru
 
Registered: Aug 2001
Location: Dublin, Ireland
Distribution: Slackware
Posts: 5,700

Rep: Reputation: 72
The problem of rc.modules modprobe not finding the tulip.o module on boot comes from the fact that from the 2.2.x kernel series (when that how to was written, to the 2.4.x series (I guess you are running 2.4.5, check it with uname -r), the kernel modules were moved around the /lib/modules tree. Offhand, you probably didn't need to compile your own tulip source as it came with 2.4.5, and its probably a lot newer than what Becker still has up there over at Scyld.

Old (according to the how-to)

/lib/modules/2.2.19/net/tulip.o.gz

New (where modprobe is looking now)

/lib/modules/2.4.5/kernel/drivers/net/tulip/tulip.o.gz

If you compiled the tulip code on your own... you've probably replaced the modules that came with Slackware 8.0 with Ollllllllld source for the 2.2.x kernel series. I've got 7 of these cards and they're all running, and I've only had to compile them for Slack 7.1, which is as nearly old as the Mandy 7.2 which that how-to was written for. If you are still running the base kernel that came with Slackware 8.0 I can email you the right kernel modules as attachments. First off though, whch kernel 2.4.5 or 2.2.19?

Cheers,

Finegan
 
Old 04-23-2002, 06:43 PM   #11
trusouthrnplaya
Member
 
Registered: Jun 2001
Location: (Cashville) Nashville, TN
Distribution: CentOS 4.0, Slackware 10.2,
Posts: 223

Rep: Reputation: 30
Thanks for helpin out fin....you just saved me from doin a whole lot of homework to figure out his problem
 
Old 04-24-2002, 09:51 AM   #12
MikeeX
Member
 
Registered: Mar 2002
Distribution: Ubuntu 6.10
Posts: 165

Original Poster
Rep: Reputation: 30
I am running the 2.2.19 kernel. But by the time you posted this, I threw in a D-Link card and got it to work in like 10 seconds. I had such a hard time with this Linksys card I wanted to try another. I really appreciate you guys helping me with this. Could the card have been bad? Maybe that's why it was so hard for me to get it going? Since I did all the instruction correctly and also read alot more posts/articles about my problem. Anyways, thanx again for the awesome support
 
Old 04-24-2002, 01:47 PM   #13
zmedico
Member
 
Registered: Feb 2002
Location: Mission Viejo, California, USA
Distribution: Gentoo
Posts: 707

Rep: Reputation: 30
Quote:
Originally posted by MikeeX
Could the card have been bad?
I have one of these and it works fine in my PIII system but not at all in my old Pentium 166 system.
 
Old 04-24-2002, 03:15 PM   #14
MikeeX
Member
 
Registered: Mar 2002
Distribution: Ubuntu 6.10
Posts: 165

Original Poster
Rep: Reputation: 30
Ya, this system is a 300 AMD K6 ...
 
Old 04-24-2002, 06:46 PM   #15
finegan
LQ Guru
 
Registered: Aug 2001
Location: Dublin, Ireland
Distribution: Slackware
Posts: 5,700

Rep: Reputation: 72
Quote:
Originally posted by MikeeX
I am running the 2.2.19 kernel. But by the time you posted this, I threw in a D-Link card and got it to work in like 10 seconds. I had such a hard time with this Linksys card I wanted to try another. I really appreciate you guys helping me with this. Could the card have been bad? Maybe that's why it was so hard for me to get it going? Since I did all the instruction correctly and also read alot more posts/articles about my problem. Anyways, thanx again for the awesome support
The Linksys cards, or more to the point, the DEC tulip chipset they run off of is one of the most cloned and open chipsets on the planet. It also works rather well, is cheap, and reliable, so that's why so many companies produce cards using it. With this comes the fact that they put in minor revisions, which have caused the tulip source code to balloon to 4 times the size of most network drivers just to take into account the idiosyncracies of 100 flavors of tulip. Linksys makes some rev every time they re-batch their ne100s, so you can pick up 3 on the same shelf at CompUSA, take them home, put them all in the same machine and 1 won't work. The card is fine, its just a little tiny bit different than the two next to it.

This is annoying, which is why I like to pick up $5 used 3Coms from a bin at my local used kit store, but when its empty I just buy an el cheapo linksys card.

Cheers,

Finegan
 
  


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
Linksys network card problem srekcus Solaris / OpenSolaris 1 08-09-2005 09:12 AM
Linksys network card and Crystal sound card m_m Linux - Hardware 8 09-04-2002 06:40 PM
Network card installation (i hate linksys) boywonder Linux - Networking 2 06-15-2002 04:01 AM
Linksys Network card problem ! aub8717909 Linux - Networking 0 05-02-2002 04:18 AM
Linksys v4 LNE100TX network Card Linuxidiot Linux - Software 3 02-12-2002 10:10 PM

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

All times are GMT -5. The time now is 12:58 AM.

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