Como fazer a conexão com a Internet funcionar (reiniciar a rede e o network-manager não faz nada)?

0

Minha conexão com a Internet não está funcionando desde que reiniciei meu laptop (que é muito antigo). Aqui está o que eu tentei:

  1. Ran sudo -s , em seguida, tentou /etc/init.d/networking stop :

    * Deconfiguring network interfaces...
    Root@carlos-laptop: ~#
    
  2. Ran status networking :

    Networking stop/waiting
    
  3. Ran status network-manager :

    network-manager start/running, process 621 
    
  4. A execução de restart networking me dá: restart: unknown instance:

  5. Reiniciei com sucesso o gerenciador de rede.

  6. Ran /etc/init.d/networking start .

    Ele diz que eu deveria usar o utilitário service (8) e " já que o script que você está tentando chamar foi convertido em um job upstart, você também pode usar o serviço (8) ... .. .networking stop / waiting ".

  7. Tentei ifup eth0 e recebi ignoring unknown interface eth0=eth0

    ifdown eth0 deu: interface eth0 not configured

  8. Então eu configurei /etc/network/interfaces em nano.

    Especificamente, excluí a loopback lo e inseri eth0 .

    Então eu corri /etc/init.d/networking restart . (A essa altura achei que funcionaria, mas estava errado.) Eu consegui:

    *reconfiguring network interfaces...
    Internet Systems Consortium DHCP Client V3.1.3
    Copyright...bla all rights reserved
    Listening on LPF/eth0/00:90:f5:4d:f8:ed
    Sending on --as above--
    Sending on Socket/fallback
    DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4;6;7;14;19;11
    No DHCPOFFERS recevied.
    No working leases in persistent database - sleeping. 
    
  9. Eu tentei ping www.google.com e recebi ping: unknown host www.google.com .

  10. Ran dpkg --configure -a que deu:

    Setting up libsdl-ttf2.0-0 (--configure): subprocess installed post-installation script returned error exit status 2
    Errors were encountered while processing: 
        libsdl-ttf2.0-0
    
  11. Tentei novamente restart networking :

    There is already a pid file /var/run/dgclient.eth0.pid with pid 1811 killed old client process, removed PID file
    

    Sistemas de Internet ...
    Recebi a mesma resposta - nenhum DHCPOFFERS recebido.

  12. Iniciou o Firefox, foi para o Google:

    -XML Parsing Error: not well-formed
    Location: jar:file///usr/lib/firefox/omni.ja!/chrome/toolkit/content/global/etError.xhtml
    Line number 23, Column 51:
    <link rel="stylesheet" href="chrome://global/s
    
  13. Tentou reiniciar o laptop e não conseguiu mais nada.

  14. Ran route -n :

    Destination 169.254.0.0
    Gateway 0.0.0.0
    Genmask 255.255.0.0
    Flags metric ref U     0      0
    Use Iface 0 eth0
    
  15. Fez sudo dhclient eth0 , obteve: no DHCPOFFERS received

  16. Reiniciado novamente, abriu /etc/network/interfaces . Estava vazio. NetworkingManager.conf também está vazio.

Eu não sei o que fazer. Estou tão frustrada agora e tenho escrito isso por uma hora no iPhone do meu amigo. Então, se você puder, me ajude, obrigado.

    
por charlloss123 05.09.2014 / 00:52

1 resposta

1

Cole isso em /etc/network/interfaces e reinicie o computador:

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp
    
por Tony Vi 05.09.2014 / 01:28