LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-15-2005, 12:26 AM   #1
Halsafar
Member
 
Registered: Sep 2005
Posts: 37

Rep: Reputation: 15
Network card install


Okay my distro of Linux "Vector Linux" appears to not recognize my Network card.

I'm not quite sure how to manuver into getting it to work.
 
Old 09-15-2005, 01:23 AM   #2
Quis
Member
 
Registered: May 2001
Location: Germany, Süd-Baden
Distribution: Gentoo
Posts: 139

Rep: Reputation: 15
Is it a PCI Ethernet card? If so, can you find it with using

lspci -v

as root?

Please post more information on your Ethernet card.
 
Old 09-15-2005, 09:05 PM   #3
Halsafar
Member
 
Registered: Sep 2005
Posts: 37

Original Poster
Rep: Reputation: 15
Windows ME recognizes it as a:
3com Etherlink III Isa (3c509b-TP0)

Which is what I know it to be.
 
Old 09-15-2005, 09:34 PM   #4
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,716

Rep: Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899
Its been awhile since I've messed with trying to configure an ISA card. The network card uses the 3c509 module. Try loading the module:
modprobe 3c509

However If you see any errors then you might have to manually specify the I/O port address and IRQ. Sometimes disabling the PNP option in the motherboard BIOS will allow the module to load.

http://www.scyld.com/3c509.html

You might need to install ispnptools to get the card to work.
http://www.roestock.demon.co.uk/isapnptools/
 
Old 09-17-2005, 12:36 PM   #5
Halsafar
Member
 
Registered: Sep 2005
Posts: 37

Original Poster
Rep: Reputation: 15
Both of those links just blew my mind.
I have no idea how to work with the first one and as for downloading the program... Well I get a list of a ton of files with extensions I do recognize.

Any assistance on my next few steps?
I am really new to learning LInux, but I gotta get it done for my university work.
 
Old 09-17-2005, 02:40 PM   #6
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,716

Rep: Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899
What happens when you (as root) run the command
modprobe 3c509
 
Old 09-18-2005, 12:09 AM   #7
Halsafar
Member
 
Registered: Sep 2005
Posts: 37

Original Poster
Rep: Reputation: 15
It goes through fine, no error reports no messages, just right back to the command line.
 
Old 09-18-2005, 02:06 PM   #8
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
If modprobe did not return errors, then the module should be loaded. Run "lsmod" (no quotes) to confirm that it has been loaded. (lsmod lists the kernel modules). Assuming you see it, then run "ifconfig" and post the results. Likewise, please post the output of "lspci" -- J.W.
 
Old 09-18-2005, 02:19 PM   #9
Halsafar
Member
 
Registered: Sep 2005
Posts: 37

Original Poster
Rep: Reputation: 15
well, first off I don't know how to make the lsmod listing page down, so I just get a few screens worth I believe. If there is a way to somehow single the module out then lemme know.

A few ones to note:

-Almost every! listing is snd-soundterm like snd-seq-midi, snd-mixer, snd-timer
- isa-pnd 29968 0 (autoclean) [snd-opl3sa2 snd-pnp]




As for ifconfig it shows me set like:

Link encap: Local Loopback
inet addr: 127.0.0.1 Mask: 255.0.0.0
UP LOOPBACK RUNNING MTU: 16436 Metric: 1

Everything else listed comes out as 0



lspci output: summed up
Host Bridge
PCI Bridge
ISA Bridge <-- the isa bridge is loaded
IDE Interface
USB Controller
Bridge
VGA Compatible Controller



ifconfig start
start: error fetching interface information: device not found

Last edited by Halsafar; 09-18-2005 at 02:32 PM.
 
Old 09-18-2005, 03:25 PM   #10
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
1. Do you see 3c509 in the output of lsmod? There usually are a lot of sound-related modules, but obviously those are independent of the NIC.
2. Please post the output of lspci, which will show the details of your equipment, which is what we're trying to find out -- J.W.
 
Old 09-18-2005, 07:02 PM   #11
Halsafar
Member
 
Registered: Sep 2005
Posts: 37

Original Poster
Rep: Reputation: 15
1.) I looked for it and as I said I get a few pages of information fly by and I cannot scroll around obviously... But as of now I see nothing resembling network card or the module name.

2.) Well I listed the lspci input summed up -- I left out Intel Corp on each line, and two 2 digit numbers which I can post if you need.
 
Old 09-18-2005, 07:12 PM   #12
michaelk
Moderator
 
Registered: Aug 2002
Posts: 25,716

Rep: Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899Reputation: 5899
Does the following command return anything? Remember linux is case sensitive.
lsmod | grep 3c509
 
Old 09-19-2005, 12:15 AM   #13
Halsafar
Member
 
Registered: Sep 2005
Posts: 37

Original Poster
Rep: Reputation: 15
typing exactly lsmod | grep 3c509 shows nothing, just returns to the command line, showing it went through okay I suppose.
 
Old 09-19-2005, 02:46 PM   #14
Halsafar
Member
 
Registered: Sep 2005
Posts: 37

Original Poster
Rep: Reputation: 15
So, whats up?
It seems the module is loaded given my last post but i cannot go ifconfig start without getting an error.
I'm not sure where to begin...
I want to install Mandriva but I believe the same problem will exist.
 
  


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
install network card. whitefox Slackware 3 09-09-2004 01:55 AM
Cant install network card jobless_joe Linux - Networking 1 04-16-2004 01:56 AM
I can't install my network card!Please help! Dratas Linux - Networking 0 08-01-2003 08:49 AM
Install network card ? spawn_666 Linux - Networking 1 06-12-2002 02:59 PM
How to install Network Card ehsan Linux - Software 1 03-20-2001 10:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:03 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