Problems with apt-get in ubuntu (NO_PUBKEY 9AA38DCD55BE302B NO_PUBKEY 4D270D06F42584E6)
June 30th, 2009 Posted in DebianI got this error:
| W: GPG error: http://mirrors.sunsite.dk stable Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 9AA38DCD55BE302B NO_PUBKEY 4D270D06F42584E6 W: You may want to run apt-get update to correct these problems |
This can be resolve but typing:
gpg --keyserver subkeys.pgp.net --recv-keys 9AA38DCD55BE302B
gpg --armor --export 9AA38DCD55BE302B | apt-key add -
gpg --keyserver subkeys.pgp.net --recv-keys 4D270D06F42584E6
gpg --armor --export 4D270D06F42584E6 | apt-key add -
2 Responses to “Problems with apt-get in ubuntu (NO_PUBKEY 9AA38DCD55BE302B NO_PUBKEY 4D270D06F42584E6)”
By Anonymous Coward on Jul 14, 2009
I’ve been Googling around a bit and that keyserver is notoriously unreliable. Currently it doesn’t even respond, but I’ve also read that when it does keys that should be there aren’t.
I’ve found an alternative: wwwkeys.eu.pgp.net
By ILikeCutNPaste on Nov 20, 2009
gpg –keyserver wwwkeys.eu.pgp.net –recv-keys 9AA38DCD55BE302B
gpg –armor –export 9AA38DCD55BE302B | apt-key add -
gpg –keyserver wwwkeys.eu.pgp.net –recv-keys 4D270D06F42584E6
gpg –armor –export 4D270D06F42584E6 | apt-key add -