|
From the ifconfig output, it appears that you are missing an eth interface. As root, what is the output of ifconfig after you type ifconfig eth0 up? If the output lists the eth0 interface, then type dhcpcd eth0 and try to ping google.com. If all of that fails, you may need to load a module so linux can work with your NIC card:
# modprobe eepro100
# ifconfig eth0 up
# dhcpcd eth0
# ifconfig
And see if you have an eth0 interface with an IP
|