apt-get update falha no Debian etch

3

Eu tenho um servidor Debian executando o Etch. Eu não consigo mais executar o apt-get update corretamente:

root@charm osqa ] apt-get update
Ign http://ftp.uk.debian.org etch Release.gpg
Ign http://ftp.uk.debian.org etch Release
Err http://ftp.uk.debian.org etch/main Packages
  404 Not Found
Err http://ftp.uk.debian.org etch/contrib Packages
  404 Not Found
Err http://ftp.uk.debian.org etch/non-free Packages
  404 Not Found
Failed to fetch http://ftp.uk.debian.org/debian/dists/etch/main/binary-i386/Packages.gz  404 Not Found
Failed to fetch http://ftp.uk.debian.org/debian/dists/etch/contrib/binary-i386/Packages.gz  404 Not Found
Failed to fetch http://ftp.uk.debian.org/debian/dists/etch/non-free/binary-i386/Packages.gz  404 Not Found
Reading package lists... Done
W: Couldn't stat source package list http://ftp.uk.debian.org etch/main Packages (/var/lib/apt/lists/ftp.uk.debian.org_debian_dists_etch_main_binary-i386_Packages) - stat (2 No such file or directory)
W: Couldn't stat source package list http://ftp.uk.debian.org etch/contrib Packages (/var/lib/apt/lists/ftp.uk.debian.org_debian_dists_etch_contrib_binary-i386_Packages) - stat (2 No such file or directory)
W: Couldn't stat source package list http://ftp.uk.debian.org etch/non-free Packages (/var/lib/apt/lists/ftp.uk.debian.org_debian_dists_etch_non-free_binary-i386_Packages) - stat (2 No such file or directory)
W: You may want to run apt-get update to correct these problems
E: Some index files failed to download, they have been ignored, or old ones used instead.

Meu arquivo sources.list é bem pequeno, contém apenas:

###### Debian Main Repos
deb http://ftp.uk.debian.org/debian/ etch main contrib

Alguma pista? Os locais do repo foram alterados? Obrigado Joel.

    
por Joel 25.07.2010 / 15:34

2 respostas

14

O Debian 4.0 (Etch) é uma versão antiga que é não mais suportada :

Debian GNU/Linux 4.0 has been superseded by Debian GNU/Linux 5.0 ("lenny"). Security updates have been discontinued as of the end of February 2010.

Etch agora foi movido para archive.debian.org :

We intend to copy Etch to archive.debian.org on the evening (UTC) of Sunday 20th June. Etch will then gradually disappear from the mirrors; the dists tree will be immediately removed and the files in the pool will be removed in groups over the following few days.

Etch agora foi removido do ftp.uk.debian.org. Você pode usar o arquivo alterando seu sources.list para:

deb http://archive.debian.org/debian/ etch main contrib

No entanto, para obter suporte de segurança, seria melhor atualizar para Lenny (e também incluir security.debian.org em sources.list). Veja as Notas de Lançamento do Lenny para instruções de atualização.

    
por 25.07.2010 / 15:48
0

Demorei um pouco depois que percebi que era um problema com meus servidores de nomes. Não consegui encontrar o arquivo archive.debian.org

Se você tiver esse problema, verifique se consegue fazer ping no google por:

ping 8.8.8.8

Em seguida, verifique se você tem servidores de nomes em execução, você pode usar o google ones: Isso vai fazer o truque

sudo echo "nameserver 8.8.8.8" >> /etc/resolv.conf
    
por 08.09.2014 / 06:36