Debian - “AVISO: versões não confiáveis dos seguintes pacotes serão instaladas!”

7

Quando tento instalar ou atualizar quaisquer pacotes que recebo:

Untrusted packages could compromise your system's security. You should only proceed with the installation if you are certain that this is what you want to do.

Suspeito que isso esteja relacionado ao erro que recebo na atualização:

$ sudo aptitude update
Get: 1 http://ftp.us.debian.org wheezy InRelease [208 kB]
Get: 2 http://debian.lcs.mit.edu wheezy InRelease [208 kB]
Ign http://ftp.us.debian.org wheezy InRelease
Hit http://ftp.us.debian.org wheezy/main amd64 Packages/DiffIndex
Hit http://ftp.us.debian.org wheezy/contrib amd64 Packages/DiffIndex
Hit http://ftp.us.debian.org wheezy/non-free amd64 Packages/DiffIndex
Hit http://ftp.us.debian.org wheezy/contrib Translation-en
Hit http://ftp.us.debian.org wheezy/main Translation-en
Hit http://ftp.us.debian.org wheezy/non-free Translation-en
Get: 3 http://debian.lcs.mit.edu wheezy-updates InRelease [116 kB]
Ign http://debian.lcs.mit.edu wheezy InRelease
Ign http://debian.lcs.mit.edu wheezy-updates InRelease
Hit http://debian.lcs.mit.edu wheezy/main Sources/DiffIndex
Hit http://debian.lcs.mit.edu wheezy/main amd64 Packages/DiffIndex
Hit http://debian.lcs.mit.edu wheezy/main Translation-en
Ign http://ftp.us.debian.org wheezy/contrib Translation-en_US
Ign http://debian.lcs.mit.edu wheezy-updates/main Sources/DiffIndex
Ign http://debian.lcs.mit.edu wheezy-updates/main amd64 Packages/DiffIndex
Ign http://ftp.us.debian.org wheezy/main Translation-en_US
Ign http://ftp.us.debian.org wheezy/non-free Translation-en_US
Hit http://debian.lcs.mit.edu wheezy-updates/main Sources
Hit http://debian.lcs.mit.edu wheezy-updates/main amd64 Packages
Ign http://debian.lcs.mit.edu wheezy/main Translation-en_US
Ign http://debian.lcs.mit.edu wheezy-updates/main Translation-en_US
Ign http://debian.lcs.mit.edu wheezy-updates/main Translation-en
Fetched 531 kB in 1s (304 kB/s)
W: GPG error: http://ftp.us.debian.org wheezy InRelease: Unknown error executing gpgv
W: GPG error: http://debian.lcs.mit.edu wheezy InRelease: Unknown error executing gpgv
W: GPG error: http://debian.lcs.mit.edu wheezy-updates InRelease: Unknown error executing gpgv

Eu tentei reinstalar o conjunto de chaves: %código% (o que surpreendentemente não causa um aviso).

    
por user1794469 02.11.2012 / 15:43

3 respostas

16

Tente isso, por favor:

Abra um terminal e execute os seguintes comandos:

sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
sudo apt-get clean
sudo apt-get update
    
por 30.01.2014 / 08:28
3

Depois de ler a resposta do APZ , mas querendo usar o aptitude eu executei com sucesso o seguinte comandos:

# clean the obsolete cache
sudo aptitude clean
# update the package information
sudo aptitude update
# install or upgrade the packages
sudo aptitude install <list of packages to upgrade/install>

O erro provavelmente está relacionado ao conteúdo do cache do apt obsoleto, mas a mensagem de erro que recebi foi um pouco diferente:

WARNING: untrusted versions of the following packages will be installed!

    
por 13.12.2014 / 01:26
2

Você parece ser atingido pelo bug do Debian # 657561 . Você pode tentar mover arquivos problemáticos em / var / lib / apt / lists / * InRelease e re-executar o apt-get update.

    
por 02.11.2012 / 18:30