PDA

View Full Version : Network not found after hd install.



.-=Ronin=-.
07-21-2003, 10:31 AM
Hi there Linux n00b here still.

When I used the livecd it would pick up my network card with no problems
(dfe530tx+)
so as I do not know how to set it up, or use the network tho knoppix I need help...
It say that there is No network card there so I cant configure it...
Please how do I do this??

Thankyou.


.-=Ronin=-.

FelixDzerzhinsky
07-21-2003, 06:36 PM
as root:

mii-tool and post the result.

aay
07-21-2003, 06:47 PM
Run netcardconfig (as root).

Stephen
07-21-2003, 08:08 PM
You may want to see if the module (tulip) for the card is is loaded with lsmod if it is in use you will see a 1 beside it.


tulip 38560 1


Also check in the file /etc/network/interfaces it should look like this for a DHCP connection:


# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
# automatically added when upgrading
auto lo eth0
iface lo inet loopback


iface eth0 inet dhcp


if the line for the dhcp is not there add it by editing the file as root then also as root /etc/init.d/networking restart to restart the network with the new settings. You may also want to check the file /etc/resolv.conf for your nameservers example file:


search wolf
nameserver 192.168.1.10
nameserver 192.168.1.34


The search line for your domain is not necessary and you only need one namserver line for it to resolve IP address.

Also from a console window you could check the boot messages to confirm the card gets initialized during boot dmesg | grep eth0 should return a line with your card in it.

aay
07-21-2003, 08:47 PM
whoops. sorry I didn't read your post very carefully. since your card isn't being detected "netcardconfig" won't do you much good. try out the other advice and post back when you have something.