apt-get update falha

1

Eu tenho um problema com o apt na minha caixa debian. Desde o início de julho, não consegui atualizar pacotes, aparentemente porque alguma chave expirou. Eu encontrei vários sites que tentaram me ajudar, mas nenhuma das soluções oferecidas funcionou. Por isso estou perguntando aqui.

Quando eu executo o "apt-get update", recebo este erro:

# apt-get update
Get:1 ftp://85.17.159.15 etch Release.gpg [1032B]
Get:2 http://security.debian.org etch/updates Release.gpg [835B]                  
Hit ftp://85.17.159.15 etch Release                                               
Hit http://security.debian.org etch/updates Release
Err ftp://85.17.159.15 etch Release

Err http://security.debian.org etch/updates Release

[...]
Fetched 107kB in 0s (407kB/s)
Reading package lists... Done
W: GPG error: ftp://85.17.159.15 etch Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9AA38DCD55BE302B
W: GPG error: http://security.debian.org etch/updates Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9AA38DCD55BE302B
W: You may want to run apt-get update to correct these problems

Eu tentei baixar e instalar uma nova chave, mas ela não resolveu o problema. Alguma pista?

    
por phidah 04.09.2009 / 09:42

1 resposta

5

tente isto:

gpg --keyserver pgpkeys.mit.edu --recv-key  9AA38DCD55BE302B
gpg -a --export 9AA38DCD55BE302B | sudo apt-key add -

Este é um sistema Debian recente para evitar a corrupção de fontes

    
por 04.09.2009 / 09:57