1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-19 06:23:25 +01:00
wiki.mbirth.de/know-how/software/linux/_posts/2009-01-24-apt-get-errors.md

1.2 KiB

created layout layout_old redirect_to tags title toc updated
2009-01-21 21:30:24 +0100 redirect default https://blog.mbirth.de/archives/2009/01/21/apt-get-errors.html
know-how
software
linux
software
apt
apt-get Errors false 2009-01-24 17:34:46 +0100

If you get the following error while updating the package list:

W: GPG error: http://ppa.launchpad.net jaunty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 632D16BB0C713DA6

You need to manually update the key. The key-ID is the last 8 digits of the key, in this case: 0c713da6.

Now fetch the key from the Ubuntu keyserver:

gpg --keyserver keyserver.ubuntu.com --recv 0c713da6

And finally add the new key to the apt-keyring:

gpg --export --armor 0c713da6 | sudo apt-key add -

You can even automate this a bit with the following shell script:

{% highlight bash %} #!/bin/bash KEYID=${1:-8} gpg --keyserver keyserver.ubuntu.com --recv $KEYID gpg --export --armor $KEYID | sudo apt-key add - {% endhighlight %}

This will only use the last 8 digits of the first parameter as KEYID. So you can even call it with the full 16 digits.