Alright, so I'm trying to upgrade (if you could call it so) to lenny-backports as seen here, but I ran into this error when running apt-get update:

W: GPG error: http://backports.debian.org lenny-backports Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A*numbers and letters*A
W: You may want to run apt-get update to correct these problems

The line I added to sources.list is as follows:

deb      http://backports.debian.org/debian-backports lenny-backports main

And as Womble asked in previous question here is the version of debian-archive-keyring no matter what is that..

dpkg -l debian-archive-keyring
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name                       Version                    Description
+++-==========================-==========================-====================================================================
ii  debian-archive-keyring     2009.01.31                 GnuPG archive keys of the Debian archive
link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Your version of the debian-archive-keyring package is out of date. You need to upgrade it to the latest version available in lenny -- an apt-get install debian-archive-keyring should do the trick.

link|improve this answer
Yup, that fixed the GPG error. Thanks! – Richards Jul 5 '11 at 15:36
feedback

try this

gpg --keyserver hkp://subkeys.pgp.net --recv-keys 16BA136C
gpg --export 16BA136C | apt-key add -
link|improve this answer
Should I use my key instead of 16BA136C ? – Richards Jul 5 '11 at 14:52
no use that key – Mike Jul 5 '11 at 14:56
Eeeew... manual key import ftl. – womble Jul 5 '11 at 14:57
you really should use the packages, not manual key import. go with @womble's answer – Michael Lowman Jul 5 '11 at 15:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.