View previous topic :: View next topic |
Author |
Message |
fernando_mojica n00b
Joined: 04 Nov 2004 Posts: 46
|
Posted: Wed Nov 10, 2004 6:08 pm Post subject: Home network |
|
|
Hello I am having problems triyn to setup my home network.. firt i get a message from my computer at booting sayin that eth0 is not recognizes.. anmd a error message on netmount, so I have no idea hoy i shoud mount my ethernet card.
and as well when i type ifconfig inestad of having eth0 i do have Lo so i dont know what is happening..
thanks |
|
Back to top |
|
|
jeremy whiting Apprentice
Joined: 25 May 2004 Posts: 159 Location: UT
|
Posted: Wed Nov 10, 2004 9:40 pm Post subject: |
|
|
lo is standard loopback device, so don't worry about that.
Sounds like the module for your network card's not loaded, try
to see what kind of network card you have in your computer, then check
to see if that module is loaded.
for example on my system lspci shows:
Code: | 0000:00:09.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8029(AS)
0 | so I have a realtek rtl-8029 network card that happens to use the ne2k_pci module.
Once you know what module you need for your network card, you can use
Code: | modprobe [i]modulename[/i] | to load it.
once the module is loaded /etc/init.d/net.eth0 start should work.[/i][/code] |
|
Back to top |
|
|
fernando_mojica n00b
Joined: 04 Nov 2004 Posts: 46
|
Posted: Wed Nov 10, 2004 9:54 pm Post subject: Hi jeremy.. |
|
|
thanks a lot for your advice, i did what you recommend me and now i can see that after running lspci i do have the following answer:
0000:00:09.0 ethernet controller: Linksys Network Everywhere Fats ethernet 10/100 model NC100 (rev11)
I was wondering which module should i load?? and how to do it???
thanks |
|
Back to top |
|
|
jeremy whiting Apprentice
Joined: 25 May 2004 Posts: 159 Location: UT
|
Posted: Wed Nov 10, 2004 11:26 pm Post subject: |
|
|
I think that card uses the tulip driver try
|
|
Back to top |
|
|
befa Apprentice
Joined: 28 Oct 2004 Posts: 208 Location: rennes
|
Posted: Wed Nov 10, 2004 11:33 pm Post subject: |
|
|
i advice him in mp to use the lne100...but i'm not sure at all!
try both! _________________ Open Minds! Open Sources! Open Future!
think_tux@jabber.org |
|
Back to top |
|
|
fernando_mojica n00b
Joined: 04 Nov 2004 Posts: 46
|
Posted: Thu Nov 11, 2004 1:48 pm Post subject: problems again |
|
|
when i tried to load the modules keept telling me that the module is not found so i dont have the tulip module to load.. as well at the boot process tell me that etho is a unknown interface and the netmount is not working..
i dont know what happend |
|
Back to top |
|
|
jeremy whiting Apprentice
Joined: 25 May 2004 Posts: 159 Location: UT
|
Posted: Fri Nov 12, 2004 12:52 pm Post subject: |
|
|
when you built your kernel you had to compile the driver for your network card.
Code: | cd /usr/src/linux
make menuconfig |
then choose your network card under
device drivers
Networking support
Ethernet (10 or 100Mbit)
make it say <M> next to the network card you have in there. Actually if I were you I'd make it compile all them as modules <M> so you can try them until you find which one works without having to rebuild your kernel each time
then exit and save your changes. then do a
Code: | make modules modules_install | that should build the modules and put them in the right place so modprobe can find them. If you have problems with any of these steps you can contact me directly (e-mail or IM below) if you'd like and I can try to walk you through it. |
|
Back to top |
|
|
fernando_mojica n00b
Joined: 04 Nov 2004 Posts: 46
|
Posted: Fri Nov 12, 2004 4:28 pm Post subject: hi jeremy |
|
|
thanks a lot for your help.. I compile my kernel adding a module for tulip and it works really well.. I appreciate your help....
and next time i had a problem i will contact you directly....thanks |
|
Back to top |
|
|
|