LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 10-17-2003, 10:11 AM   #1
natrone
LQ Newbie
 
Registered: Oct 2003
Posts: 21

Rep: Reputation: 15
Newbie needs help with RedHat


Using RedHat 7.3, when I try to activate my nic I receive an error- unable to activate eth0. It recognized my nic correctly- SIS900, I set the configuration to using dhcp and have tried connecting through my router as well as direct, and I receive the same error. I am a complete newbie to linux, where does one even start to troubleshoot? or are there any fixes or walkthroughs someone can post. Thanks in advance.
 
Old 10-17-2003, 10:37 AM   #2
zLinuxz
Senior Member
 
Registered: Feb 2002
Location: Shanghai, CHINA
Distribution: RH 5.0,5.1 6.0,6.1 7.0,7.1,7.2,7.3.,8.0,9.0, RH Enterprise, Fedora C1, C2
Posts: 1,216

Rep: Reputation: 45
how do you know that your card is correctly recognized?

did you try the command

#]: /sbin/./ifconfig

What does this yield?
did you just do a fresh Redhat 7.3 install?, or did it work before, and not anymore?

Here is also a walkthrough, that you might want to check out:
http://www.linux.org/docs/ldp/howto/Ethernet-HOWTO.html

By the way, you card SiS900 IS Very well supported by linux, just so you know, so your problem sounds a little odd.

If you can post the commands and errors you get from the command line, that would be most helpful!, thanks.

zLinuxz
 
Old 10-17-2003, 02:32 PM   #3
natrone
LQ Newbie
 
Registered: Oct 2003
Posts: 21

Original Poster
Rep: Reputation: 15
Thanks for the response, but where do I run the command
#]: /sbin/./ifconfig ? Once again, I'm a total newb to linux. A response would be greatly appreciated.
 
Old 10-17-2003, 03:18 PM   #4
Genesee
Member
 
Registered: Dec 2002
Distribution: Slackware
Posts: 927

Rep: Reputation: 30
open a console, or terminal if that's the term RH uses - it will be in your graphical main menu somewhere.

then change to root, by typing

su

at the prompt, enter, then type the root passwd.

type 'exit' when you no longer need root privelages - it's best to not run as root unless necessary.


Last edited by Genesee; 10-17-2003 at 03:21 PM.
 
Old 10-17-2003, 11:26 PM   #5
natrone
LQ Newbie
 
Registered: Oct 2003
Posts: 21

Original Poster
Rep: Reputation: 15
Ok, i ran the /sbin/./ifconfig command and here is what displayed

lo
Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
Rx Packets:0 errors:0 dropped:0 overruns:0 frame:0
Tx Packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:3296(3.2kb) TX bytes:3296(3.2kb)

Hope this helps you help me.
I await any reply. Thanks in advance.
 
Old 10-18-2003, 05:35 AM   #6
porous
Member
 
Registered: Oct 2003
Distribution: redhat 9
Posts: 147

Rep: Reputation: 15
this means that your card is not up yet...
its showing only the lookback address

#i am not sure abt this but give a try..

#ifup eth0
and check wether its up...
 
Old 10-18-2003, 01:31 PM   #7
natrone
LQ Newbie
 
Registered: Oct 2003
Posts: 21

Original Poster
Rep: Reputation: 15
Can anybody else help with this issue, please see my posts earlier for any information you need in assisting. Thanks in advance.
 
Old 10-22-2003, 02:22 AM   #8
zLinuxz
Senior Member
 
Registered: Feb 2002
Location: Shanghai, CHINA
Distribution: RH 5.0,5.1 6.0,6.1 7.0,7.1,7.2,7.3.,8.0,9.0, RH Enterprise, Fedora C1, C2
Posts: 1,216

Rep: Reputation: 45
yeah Natrone, in the same way you ran /sbin/./ifconfig

you need to run this following command

/sbin/./ifup eth0


after you do that, you will see your system try to use dhcp to get automatic ip for your computer, through ethernet.

run it, and then post what you get!, cool.

zLinuxz
 
Old 10-22-2003, 06:54 PM   #9
natrone
LQ Newbie
 
Registered: Oct 2003
Posts: 21

Original Poster
Rep: Reputation: 15
Okay ran /sbin/./ifup eth0 and here is what I got:

sis900 device does not seem to be present, delaying initialization.

Now what? Help. Do I need a driver for this?, or are there some other commands to initialize my nic?

Does it matter that I'm running threw a router at this time?

Thanks in advance.
 
Old 10-22-2003, 08:23 PM   #10
DMR
Member
 
Registered: Jun 2001
Location: Fairfax, California
Distribution: RH 9.0, RH 7.3, Mandrake 8.0
Posts: 986

Rep: Reputation: 30
Quote:
Originally posted by natrone
Okay ran /sbin/./ifup eth0 and here is what I got:

sis900 device does not seem to be present, delaying initialization.

Now what? Help. Do I need a driver for this?, or are there some other commands to initialize my nic?
You do need a driver loaded. The driver is named sis900, and you can try to load it manually with the following command:

modprobe sis900

If you get no errors, try the ifup command after that. If you get no errors from that, run the ifconfig command and see if your network card appears (if you only have 1 net card it will be called "eth0").

If you do get errors, you might have a resource (IRQ and/or IO address) conflict. You can find some suggestions for resolving those issues here.

Quote:
Originally posted by natrone
Does it matter that I'm running threw a router at this time?
Yes, it could. Is the router configured to be the DHCP server?
 
Old 10-22-2003, 10:24 PM   #11
natrone
LQ Newbie
 
Registered: Oct 2003
Posts: 21

Original Poster
Rep: Reputation: 15
When I ran the modprobe sis900 command I received a bunch of text with beginning with

/lib/modules/2.4.18-3/kernel/drivers/net/sis900.o: init_module: No such device

Was there something I was supposed to do before running the modprobe command? I warned you that I was a newbie!!!
 
Old 10-22-2003, 11:37 PM   #12
DMR
Member
 
Registered: Jun 2001
Location: Fairfax, California
Distribution: RH 9.0, RH 7.3, Mandrake 8.0
Posts: 986

Rep: Reputation: 30
Did you try any of the suggestions regarding resource conflicts in the link I posted? If not, check them out.
 
Old 10-23-2003, 12:17 AM   #13
zLinuxz
Senior Member
 
Registered: Feb 2002
Location: Shanghai, CHINA
Distribution: RH 5.0,5.1 6.0,6.1 7.0,7.1,7.2,7.3.,8.0,9.0, RH Enterprise, Fedora C1, C2
Posts: 1,216

Rep: Reputation: 45
DMR You are the man, thanks to your Post, as unrealted may it seem, I was able to make my Wireless builtin network card in my laptop WORK!!!!, WOOHOOOOO, I'm happy!!!, yeah, yeha, yeah!!!!

And, Natrone, I hope you are shortly on your way to setup the sis900 card. DMR is doing a great job in helping you.

Let us know what happens!,
 
Old 10-23-2003, 01:01 AM   #14
zLinuxz
Senior Member
 
Registered: Feb 2002
Location: Shanghai, CHINA
Distribution: RH 5.0,5.1 6.0,6.1 7.0,7.1,7.2,7.3.,8.0,9.0, RH Enterprise, Fedora C1, C2
Posts: 1,216

Rep: Reputation: 45
hmmm, Natrone, just another question

you never answered my question in regard to, if you had made a new Redhat installation?, or not?

you could be saving lots of head eggs if you configure your network by doing an Upgrade if you boot with a Redhat CD after you reboot your computer...and then you can select to upgrade, and the installation will detect your card and install it if you follow the installation instructions.
 
Old 10-23-2003, 03:17 AM   #15
DMR
Member
 
Registered: Jun 2001
Location: Fairfax, California
Distribution: RH 9.0, RH 7.3, Mandrake 8.0
Posts: 986

Rep: Reputation: 30
Quote:
Originally posted by zLinuxz
DMR You are the man, thanks to your Post, as unrealted may it seem, I was able to make my Wireless builtin network card in my laptop WORK!!!!, WOOHOOOOO, I'm happy!!!, yeah, yeha, yeah!!!!

And, Natrone, I hope you are shortly on your way to setup the sis900 card. DMR is doing a great job in helping you.

Let us know what happens!,
Thanks zLinuxz- appreciation for our help is the only pay we get here! We've all learned this the hard way- why not make it easier for those just starting out

Speaking of which:

So others can benefit from what you've gone through, can you tell us exactly what did the trick? Since these threads are archived, if you posted that here you can save other Newbies from possible hours of frustration.

 
  


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



Similar Threads
Thread Thread Starter Forum Replies Last Post
redhat 9 mailserver for newbie Xendi Linux - Newbie 2 01-31-2004 09:50 PM
redhat 9.1 newbie dude_228 Linux - Newbie 8 06-15-2003 11:12 PM
RedHat 8.0 networking help (newbie) jrw3179 Linux - Networking 36 03-12-2003 01:18 AM
mandrake/redhat for newbie? tumnus Linux - Distributions 5 02-06-2003 05:57 AM
newbie redhat help shutupkid Linux - General 5 11-18-2002 07:20 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

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