Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delaying eth0 initialization

Status
Not open for further replies.

roeiboot

Technical User
Feb 10, 2002
241
US
i had RedHat kernel version 2.4.2-2, then i upgraded to version 2.4.20-28.7. it all went fine (so i thought)
now when i boot using the new kernel i get: "Delaying eth0 initialization". so i started Netcfg and activated the eth0, i see the following error:
SIOCDELRT No such process
SIOCADDRT Network is unreachable
(obviously i can't browse the internet or use the network)

when i boot using the old kernel the Network card works.

(whole reason why i try to upgrade is -because without messing with the system- that the Linux pc is no longer accessible from the network.)

any one have any idea ? thanks.
 
1. boot the working kernel, and find out, what your eth-card is:
Code:
lspci | grep -i eth
2. see if it is driven by a module, i.e. for my reltek-card, the driver is 8139too, which you may find out by searching the kernelsource-Documentation:
Code:
lsmod | grep 8139too
3. boot the new linux, and see, if the module is loaded like in 2.
4. if not, try to load it manually:
Code:
modprobe 8139too
5. 6. 7.: to be continued after your report :)

seeking a job as java-programmer in Berlin:
 
thanks for the reply.

i have the Com Corporation 3c900 10BaseT [Boomerang] NIC
i think it's (according to stuff i found) i should use 3c900.

lsmod | grep 8139too

has no output to the screen... in other words, damn i'm stuck :]

ps. if i try (in the working kernel)

modprobe 3c900

it reports "modprobe: Can't locate module 3c900
 
did you
Code:
lsmod | grep 8139too
# or
lsmod | grep 3c900
?

In my kernel-documentation (vortex.txt) it looks, as if your driver should be named '3c59x'
Code:
lsmod | grep 3c59x
?

and therefore
Code:
 modprobe 3c59x
?



seeking a job as java-programmer in Berlin:
 
thanks again. here's what's been happening. last friday my father-in-law died and i got his old -which is only 6mo old- computer, so i was working on that this morning and removed 1 of the cd players out of my workstation (to put in my 'new' pc since i like to have 2 cd players). after rebooting my workstation for no apparent reason it started nagging me with new NIC found, i re-installed it and ended up in Windows, for shits n' giggles i tried going to the Linux box and what do you know, suddenly it works.. all that basically happened was that the 2 NIC's in my workstations have virtually switched.

sometimes pc's are weird (so are some users :}

long story short, problem solved... (we'll see ya guys when i have a new problem :}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top