Hey,
It doesn't look like there's an IP address assigned to eth0, it would normally show up under 'inet'
Need to get an IP address assigned to the interface so it can communicate on the network...but first you've gotta pick one out & get the rest of your settings...the 'NO DHCPOFFERS' message indicates there's no DHCP server on your network, or it's not answering.
Is this box connected to a switch/router, or directly connected to the internet??
If you're on a router, then go to one of your other PC's. Copy the network setup from it. For example, in Windows you would:
go start / run / cmd
typein: ipconfig /all
Copy down the IP address, subnet mask, default gateway, and both DNS servers
Your IP address for the linux box must be unique, so add 1 to it. (I.e., if it's 192.168.1.101, make the linux box 192.168.1.102).
Here's how to configure it via the terminal:
sudo /sbin/ifconfig eth0 inet <ip address> netmask <subnet mask> up
example:
sudo /sbin/ifconfig eth0 inet 192.168.1.102 netmask 255.255.255.0 up
Next add ur default gateway:
sudo /sbin/route add default gw <default gateway>
i.e.:
sudo /sbin/route add default gw 192.168.1.1
Lastly, configure your DNS servers, by putting them into the /etc/resolv.conf file. You should be able to edit the file just with a 'edit /etc/resolv.conf' or try 'pico /etc/resolv.conf' if edit doesn't work.
Make the file look like this:
nameserver <dns server 1>
nameserver <dns server 2>
So for example, mine looks like:
nameserver 68.87.69.146
nameserver 68.87.85.98
And that's it. Try to 'ping google.com' & see if you can get a reply.
Just so you know, this is the 'standard' way of bringing up the network in linux -- all linux distro's should follow the above. But, you can usually also do it via the Window system -- which is a little bit easier sometimes than hammering out ifconfig commands. But each distro's windowing system can be differnet & there's no real 'standard' way of doing it.
Here's a page from the Mandriva site covering the network setup using the GUI:
http://doc.mandrivalinux.com/Mandra...
Skip down to the 'Setting up a LAN connection' -- just copy the IP settings from another box, like I'd described above.
Good luck.