GPG Error on reloading repos

Asked by melrokz

This happened when I was reloading my repos using synaptic on Ubuntu 10.10.
How do I fix this?
The output is below:

W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://extras.ubuntu.com maverick Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY DB141E2302FDF932

W: Failed to fetch http://extras.ubuntu.com/ubuntu/dists/maverick/Release

W: Some index files failed to download, they have been ignored, or old ones used instead.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
actionparsnip
Solved:
Last query:
Last reply:
Revision history for this message
Best actionparsnip (andrew-woodhead666) said :
#1

You have added a PPA but not added it's key. You can add this key with:

sudo apt-key adv --recv-key --keyserver keyserver.ubuntu.com DB141E2302FDF932

I personally have a script for this called getkey which reads:

[andy@fileserver ~]$ cat /usr/bin/getkey
#!/bin/bash
sudo apt-key adv --recv-key --keyserver keyserver.ubuntu.com $1

so I can run:

sudo getkey DB141E2302FDF932

and it is imported.

Revision history for this message
melrokz (melrockz) said :
#2

Thanks actionparsnip, that solved my question.