A conexão com fio do Ubuntu 14.04 não está detectando

2

Eu iniciei Windows com o Ubuntu algumas semanas atrás. Minha conexão com a Internet parece ser detectada automaticamente no Windows, mas não no Ubuntu.

Aqui está a saída de ifconfig :

eth0 Link encap:Ethernet HWaddr 00:17:7c:19:32:8d
UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:175 errors:0 dropped:0 overruns:0 frame:0 TX packets:175 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:12609 (12.6 KB) TX bytes:12609 (12.6 KB)

REVISADO Atual: Isso é tudo no arquivo / etc / network / interfaces

# interfaces(5) file used by ifup(8) and ifdown(8) 
auto lo eth0 
iface eth0 inet dhcp

btw eu não tenho conexões adicionadas wen eu verifiquei minhas preferências de rede

    
por mrdoubtful 12.07.2014 / 17:26

1 resposta

3

Verifique ou defina a interface de rede para DHCP: Abra o arquivo em um editor de texto como root:

sudo nano /etc/network/interfaces

Verifique as linhas eth0 no arquivo:

auto eth0

iface eth0 inet dhcp

Salve o arquivo e saia.

Reinicie a rede:

sudo service network-manager restart

Configurações

DEFAULT para eth0 com dhcp:

# The loopback network interface
auto lo eth0
iface lo inet loopback

# The primary network interface
iface eth0 inet dhcp
    
por 12.07.2014 / 17:44