apt-get update não pode se conectar ao servidor

2

Eu tento atualizar no meu Ubuntu 15.04, mas se não conseguir conectar ao servidor

me@me:~$ sudo apt-get update 
Err http://archive.ubuntu.com vivid InRelease
Err http://archive.ubuntu.com vivid-updates InRelease
Err http://archive.ubuntu.com vivid-backports InRelease
Err http://archive.ubuntu.com vivid-security InRelease
Err http://archive.ubuntu.com vivid Release.gpg
  Unable to connect to 54.86.15.42:8080:
Err http://archive.ubuntu.com vivid-updates Release.gpg
  Unable to connect to 54.86.15.42:8080:
Err http://archive.ubuntu.com vivid-backports Release.gpg
  Unable to connect to 54.86.15.42:8080:
Err http://archive.ubuntu.com vivid-security Release.gpg
  Unable to connect to 54.86.15.42:8080:
Reading package lists... Done
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/vivid/InRelease  
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/vivid-updates/InRelease  
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/vivid-backports/InRelease  
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/vivid-security/InRelease  
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/vivid/Release.gpg  Unable to connect to 54.86.15.42:8080:
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/vivid-updates/Release.gpg  Unable to connect to 54.86.15.42:8080:
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/vivid-backports/Release.gpg  Unable to connect to 54.86.15.42:8080:
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/vivid-security/Release.gpg  Unable to connect to 54.86.15.42:8080:
W: Some index files failed to download. They have been ignored, or old ones used instead

Eu tentei encontrar soluções, mas não consigo corrigi-las. Aqui o que eu tentei até agora:

  1. Modifique em /etc/resolv.conf para:

    nameserver 8.8.8.8
    nameserver 8.8.8.4
    
  2. Eu tentei fazer ping no servidor Ubuntu

    me@me:~$ ping archive.ubuntu.com
    PING archive.ubuntu.com (91.189.91.15) 56(84) bytes of data.
    64 bytes from likho.canonical.com (91.189.91.15): icmp_seq=1 ttl=41 time=259 ms
    64 bytes from likho.canonical.com (91.189.91.15): icmp_seq=2 ttl=41 time=257 ms
    64 bytes from likho.canonical.com (91.189.91.15): icmp_seq=3 ttl=41 time=255 ms
    64 bytes from likho.canonical.com (91.189.91.15): icmp_seq=4 ttl=41 time=288 ms
    ^C
    --- archive.ubuntu.com ping statistics ---
    4 packets transmitted, 4 received, 0% packet loss, time 3003ms
    rtt min/avg/max/mdev = 255.160/265.270/288.347/13.437 ms
    
  3. Em Software e amp; Atualize, mude o servidor para o servidor principal

  4. Em /etc/apt/apt.conf , encontrei esta linha:

    Acquire::http::proxy 54.86.15.42:8080
    

    Eu tentei adicionar # na frente dele e não funcionou. Em seguida, tente conectar-se a 54.86.15.42: 8080 e nada acontece. E ping para este endereço:

    me@me:~$ sudo ping 54.86.15.42
    PING 54.86.15.42 (54.86.15.42) 56(84) bytes of data.
    ^C
    --- 54.86.15.42 ping statistics ---
    16 packets transmitted, 0 received, 100% packet loss, time 14999ms
    

Parece relacionado a proxy ou firewall, mas não uso nenhum deles. Alguém sabe como consertar isso?

    
por Son Nheo 16.10.2015 / 08:51

2 respostas

2

Meu problema foi resolvido. Eu não sei o que faz isso funcionar novamente. Eu tentei esses comandos unset http_proxy e unset https_proxy como @ nilesh_101 sugerido. Outra coisa que fiz foi alterar o proxy e depois alterá-lo para o padrão novamente. Obrigado a todos por responderem a minha pergunta!

    
por Son Nheo 16.10.2015 / 15:51
1

Eu tive o mesmo problema. Depois eu limpo todo o conteúdo do arquivo apt.conf e ele funciona perfeitamente.

    
por nilesh_101 16.10.2015 / 15:08