On Tue, 15 Jul 2003 15:30:31 GMT
~# /sbin/ifconfig -a | grep "^eth[0-9]\{1,\}"
This will tell you if you have working network interface.
If you dont have, install a driver for you network card.
~# lspci | grep -i "ethernet"
This will tell you if you have network adapters that kernel sees.
You can use this info to find proper driver.
after you have functioning network interface, edit /etc/network/interfaces
/etc/network/interfaces controls what interface to bring up, how, and when
This is a sample /etc/network/interfaces
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface - you need to have it unless you know why you dont need it
auto lo
iface lo inet loopback
# The first network card - use dhcp at the boot-up time
auto eth0
iface eth0 inet dhcp