First you need to check the output of ifconfig -a
and see how many interfaces are listed. Do you have anything for "eth0"
?
if not, then do
sudo vi /etc/network/interface
place the following lines (make sure to change the IP address according to Your Network Range at home as your router may broadcast 172.2.0.0 network or something else.)
auto lo
iface lo inet loopback
# Primary Network
iface eth0 inet static
address 192.168.2.13 #this ip might be different according to your router
netmask 255.255.255.0
gateway 192.168.2.1
network 192.168.2.0
Now do
sudo /etc/init.d/networking/restart
You may have to restart the PC. I hope this helps. Please enter the result whatever you get after doing all this.
Additional Drivers
utility? Anything showing up there? – ntninja Dec 21 '14 at 23:38sudo lshw -C network
– Mitch Dec 22 '14 at 07:56