3

Okay, so I recently installed Ubuntu on an old laptop and now it won't connect to the internet. When I plug in the Ethernet cord is says connecting and the little icon things moves but after a minute or so it says disconnected and repeats.

Before I installed Ubuntu it worked fine using Win XP so it's not the port or anything and besides, it recognizes the cord is there, it just won't fully connect. I don't have wireless so I;m not sure if that works or not but I can view the networks around my place. Any ideas? I really need to get this working. Thanks.

TL;DR LAN says connecting and then says disconnected.

2 Answers2

1

start the terminal and type

gksu gedit /etc/network/interfaces

File will opened in gedit. It will be empty or should contain

auto lo
iface lo inet loopback

In gedit add following lines and save it and close

auto eth0
iface eth0 inet dhcp

and restart the network manager: sudo service network-manager restart It works fine with my case

javier_domenech
  • 111
  • 1
  • 1
  • 13
ajay_t
  • 133
  • 1
  • 1
  • 8
0

Try the following:

sudo restart network-manager

Also: a little bit more information of your system would be helpful!

st3fUn
  • 168
  • @user129523: So, did you then successfully restart your network manager by using the command I provided? – st3fUn Feb 09 '13 at 09:34
  • Yeah, I tried the command but it didn't help. I'm still not able to connect. – Perry Bezenar Feb 09 '13 at 19:43
  • Also is there a way I can Update Ubuntu without connection to the internet? Like Update it with a thumbdrive or something? I mainly just want the plugins and stuff to play media such as music and video. – Perry Bezenar Feb 09 '13 at 19:50