não pode instalar nada via apt-get. problema com o apt-get update [duplicate]

6

Não consigo instalar nada com o apt-get. Eu acho que esse problema é devido ao erro gpg de algum tipo. Eu fiz quase tudo na net como por minha crença. Isto é o que acontece quando eu corro apt-get update .

mody@ubuntu:~$ sudo apt-get update
Get:1 http:/dl.google.com stable Release.gpg                                  
Get:2 http:/dl.google.com stable Release                                      
Ign http:/dl.google.com stable Release                                        
E: GPG error: http:/dl.google.com stable Release: The following signatures were invalid: NODATA 1 NODATA 2
mody@ubuntu:~$ 

Eu tentei estes

mody@ubuntu:~$ sudo apt-get clean
mody@ubuntu:~$ sudo apt-get update && sudo apt-get upgrade
Get:1 http:/dl.google.com stable Release.gpg
Get:2 http:/dl.google.com stable Release                                      
Ign http:/dl.google.com stable Release                                        
E: GPG error: http:/dl.google.com stable Release: The following signatures were invalid: NODATA 1 NODATA 2

Não funcionou

mody@ubuntu:~$ sudo apt-get update -o Acquire::http::No-Cache=True
Get:1 http:/dl.google.com stable Release.gpg
Get:2 http:/dl.google.com stable Release                                      
Ign http:/dl.google.com stable Release                                        
E: GPG error: http:/dl.google.com stable Release: The following signatures were invalid: NODATA 1 NODATA 2

Não funcionou

mody@ubuntu:~$ sudo apt-get update -o Acquire::BrokenProxy=true 
Get:1 http:/dl.google.com stable Release.gpg
Get:2 http:/dl.google.com stable Release                                      
Ign http:/dl.google.com stable Release                                        
E: GPG error: http:/dl.google.com stable Release: The following signatures were invalid: NODATA 1 NODATA 2
mody@ubuntu:~$ 

Mesmo isso

Clique em Sistema > > Administração > > Fontes de software Clique no menu Download De e escolha Servidor Principal. Digite o seguinte no terminal.

sudo apt-get update

Execute o gerenciador de atualização novamente.

Mas não funcionou

Eu também alterei as fontes com uma disponível no site do Ubuntu. Eu não sei porque eu fiz isso, mas isso não ajudou

Fiz uma atualização de força. o problema persiste.

mody@ubuntu:~$ sudo apt-get update -f

[sudo] password for mody: 
Get:1 http:/dl.google.com stable Release.gpg
Get:2 http:/dl.google.com stable Release                                      
Ign http:/dl.google.com stable Release                                        
E: GPG error: http:/dl.google.com stable Release: The following signatures were invalid: NODATA 1 NODATA 2

Frustrado.

O Synaptic não está instalado, assim como o aptitude. mudar o servidor de download para tudo o que é possível de qualquer coisa também não ajudou.

PS: link estava me dando problemas para postar, então eu deletei / onde // estava presente

    
por Promod 25.01.2014 / 13:07

1 resposta

3

A chave para assinar pacotes baixados do repositório de software do Google Linux pode precisar ser reimportada. Isso pode ser feito com a seguinte linha em um terminal

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

Como alternativa, também podemos fazer download e salvar a chave para importá-la manualmente.

Fonte: Google

    
por Takkat 25.01.2014 / 14:27