9

When i try to install or update any packages I get:

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.

I strongly suspect this is related to the error i get on update:

$ 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

I have tried reinstalling the key ring: sudo aptitude reinstall debian-archive-keyring (which surprisingly doesn't cause a warning).

euluis
  • 43
  • 4
user1794469
  • 217
  • 2
  • 6

3 Answers3

19

Try this please:

Open a terminal and run the following commands:

sudo apt-get clean
sudo rm -rf /var/lib/apt/lists/*
sudo apt-get clean
sudo apt-get update
Smylers
  • 156
  • 6
APZ
  • 954
  • 2
  • 12
  • 24
  • you don't reallly think I've just been ignoring this issue for 16 months do you? I'm not sure if this would work because I don't see the problem any more. I probably just rebuilt but I'm not sure as I don't even remember which machine it was. – user1794469 Jan 31 '14 at 00:12
  • 7
    @user1794469. This site is supposed to be a useful to everyone, not just you. As such, late answers to unanswered questions are perfectly acceptable, as they may help others. That said, this answer would be better quality if it sought to *explain* what those commands do. – TRiG Jul 08 '14 at 14:23
  • Worked for me when upgrading from squeeze to wheezy. Many thanks! – Tobia Sep 28 '15 at 15:16
  • even worked for me when getting an untrusted warning while installing git & git core on Windows 10's "Windows Subsystem for Linux' – wruckie Aug 05 '16 at 16:22
4

After reading APZ's answer, but wanting to use aptitude I executed with success the following commands:

# 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>

The error is probably related to obsolete apt cache contents, but the error message I got was a bit different:

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

euluis
  • 43
  • 4
2

You seem to be hit by Debian bug #657561. You can try to move problematic /var/lib/apt/lists/*InRelease files and rerun apt-get update.

Kamil Šrot
  • 333
  • 1
  • 3
  • 10