0

I installed Ubuntu 14.04 LTS on a Inspirion E1505 and when I booted to the install drive it recognized the Internet just fine. Now that I have it installed, not so much. When I run ifconfig it only returns lo. When I run:

sudo nano /etc/network/interfaces 

it only returns:

auto lo
iface lo inet loopback
andrew.46
  • 39,359

2 Answers2

0

I've had similar problems in the past. Often adding auto eth0 to the end of /etc/network/interfaces does the trick.

0

If sudo lshw -C network shows that you have an eth0 (You may have to sudo apt-get instal lshw), add iface eth0 inet to /etc/network/interfaces

waltinator
  • 37,856