Ubuntu GPG error: http://ppa.launchpad.net
Simon | January 22, 2009If you come across this error after running aptitude update
W: GPG error: http://ppa.launchpad.net intrepid Release: The following signatures couldn't be verified because the public key is not available:
NO_PUBKEY 7D2C7A23BF810CD5
W: You may want to run apt-get update to correct these problems
due to a missing GPG key do the following to correct the problem
gpg --keyserver subkeys.pgp.net --recv 7D2C7A23BF810CD5
Replace the key number “7D2C7A23BF810CD5″ with the one included in your error message
gpg --export --armor 7D2C7A23BF810CD5 | sudo apt-key add -
After that, the key will be added to a list and the error will not reappear.
Share on Facebook





gpg --keyserver subkeys.pgp.net --recv 778978B00F7992B0 gpg: requesting key 0F7992B0 from hkp
Oddin | January 23, 2009gpg –keyserver subkeys.pgp.net –recv 778978B00F7992B0
gpg: requesting key 0F7992B0 from hkp server subkeys.pgp.net
gpg: waiting for lock (held by 6153 – probably dead) …
gpg: waiting for lock (held by 6153 – probably dead) …
^C
gpg: Interrupt caught … exiting
Who is dead?
Thank You very much! Easy to follow and very very
Loren | January 24, 2009Thank You very much!
Easy to follow and very very helpful!
Danke schön!
Steve Love | January 24, 2009Danke schön!
For my system, it was necessary to use sudo.
Gatek33per | January 31, 2009For my system, it was necessary to use sudo. Otherwise the gpg commands worked as written.
thank you, i was experiencing the same problem recently
aypro | February 2, 2009thank you, i was experiencing the same problem recently
Worked well on Ubuntu (Kubuntu) as well. Thanks a lot!
Augustin | February 2, 2009Worked well on Ubuntu (Kubuntu) as well. Thanks a lot!
Thank you! It works!
OnkelBenz | February 2, 2009Thank you!
It works!
thanks
MaRcOs | February 3, 2009thanks
Bei mir war es der Key: W: GPG error: http://ppa.launchpad.net intrepid
derblitz | February 3, 2009Bei mir war es der Key:
W: GPG error: http://ppa.launchpad.net intrepid Release: Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 60D11217247D1CFF
Wie oben beschrieben vorgrangen:
gpg –keyserver subkeys.pgp.net –recv 60D11217247D1CFF
gpg –export –armor 60D11217247D1CFF | sudo apt-key add -
Nun klappt es wieder.
Danke für die Anleitung.
Viorika !! It works.. :P! 10x
Cosmin | February 5, 2009Viorika !! It works..
!
10x
really really useful!! of course it solve problems. Thanks!!
ufox | February 6, 2009really really useful!!
of course it solve problems.
Thanks!!
THANKS A LOT
Sebastian | February 7, 2009THANKS A LOT
Cheers!
Alex P | February 7, 2009Cheers!
Gracias Amigo.
robert | February 10, 2009Gracias Amigo.
You might also try the following code (as published at
Tomasz W. Kozłowski | February 12, 2009You might also try the following code (as published at forum.ubuntu.pl):
sudo apt-get update 2> /tmp/keymissing; for key in $(grep "NO_PUBKEY" /tmp/keymissing |sed "s/.*NO_PUBKEY //"); do echo -e "\nProcessing key: $key"; sudo gpg --keyserver subkeys.pgp.net --recv $key && sudo gpg --export --armor $key | sudo apt-key add -; done
Cheers for this, I knew someone would've blogged a fix
Caius | February 15, 2009Cheers for this, I knew someone would’ve blogged a fix for it
Thanks a lot, this worked flawlessy!
Alessandro | February 19, 2009Thanks a lot, this worked flawlessy!
Thanks mate. Perfect.
Marko | February 19, 2009Thanks mate. Perfect.
Thank you for your effort with this. Major irritation solved.
Matthew Bugno | February 20, 2009Thank you for your effort with this. Major irritation solved. I humble myself before you. I have copied your solution for reference.
Vielen Dank für Ihre Mühe mit diesem. Major Reizung gelöst. Ich mich bescheiden, bevor Sie. Ich habe kopiert Ihre Lösung für die Bezugnahme ..
Thank you, this works!
Herman | March 26, 2009Thank you, this works!
Didn't work for me. Regarding to https://answers.launchpad.net/ubuntu/+source/synaptic/+question/66164 I had to use
Hans-Peter | April 18, 2009Didn’t work for me.
Regarding to https://answers.launchpad.net/ubuntu/+source/synaptic/+question/66164
I had to use this in terminal window:
# gpg –keyserver keyserver.ubuntu.com –recv 60D11217247D1CFF
# gpg –export –armor 60D11217247D1CFF | sudo apt-key add -
Then press reload button in the Synaptic Package Manager. –> Success !!!!
Thank you.
That works, thanks a lot
Glen | May 16, 2009That works, thanks a lot
Worked like a charm! Thanks. interesting to find that in
maxauthority | June 22, 2009Worked like a charm! Thanks. interesting to find that in a gentoo blog though
this is very help me..thnx very much ;-)
zoel | August 8, 2009this is very help me..thnx very much
[...] your system. If you run into any missing gpg
Gentoo Blog » Upgrade Debian Etch to Debian Lenny | August 13, 2009[...] your system. If you run into any missing gpg key problems after running the update please read this aptitude update gpg key problems Then open up you sources list file with you favourite [...]
Yes, thanks!! Although it was anti-climactic to finally fix this annoyance,
cp | September 19, 2009Yes, thanks!!
Although it was anti-climactic to finally fix this annoyance, and after typing the last command all it says is “OK”.
[...] Gentoo Blog » Ubuntu GPG error: http://ppa.launchpad.net [...]
Ubuntu GPG error: http://ppa.launchpad.net : Linux T&T | October 8, 2009[...] Gentoo Blog » Ubuntu GPG error: http://ppa.launchpad.net [...]
Thanks a lot, mate! Awesome
Mike | October 11, 2009Thanks a lot, mate! Awesome
Thx a lot! For me, the following worked (adopted from Tomasz
Philipp | November 2, 2009Thx a lot!
For me, the following worked (adopted from Tomasz above, with 2 sudo less):
sudo apt-get update 2> /tmp/keymissing 1> /dev/null; for key in $(grep "NO_PUBKEY" /tmp/keymissing |sed "s/.*NO_PUBKEY //"); do echo -e "\nProcessing key: $key"; gpg --keyserver subkeys.pgp.net --recv $key && gpg --export --armor $key | sudo apt-key add -; done; rm /tmp/keymissing
Other keyservers to try, if keyserver.ubuntu.com or subkeys.pgp.net are offline:
keyserver hkp://subkeys.pgp.net
keyserver hkp://pgp.mit.edu
keyserver hkp://pool.sks-keyservers.net (random server)
keyserver hkp://keys.nayr.net
keyserver http://keys.gnupg.net
keyserver http://wwwkeys.xx.pgp.net where xx is a two-letter country code.
(from Launchpad )
Thx very much, was helpful!
ZeldoR | January 11, 2010Thx very much, was helpful!
[...] http://gentoo-blog.de/ubuntu/ubuntu-gpg-error-httpppalaunchpadnet-intrepid-release/ [...]
Linux PUB Key error « Fellixombc's Official Blog! | May 21, 2010[...] http://gentoo-blog.de/ubuntu/ubuntu-gpg-error-httpppalaunchpadnet-intrepid-release/ [...]