hi
i use ubuntu 8.10
and when i add this repositories
deb http://ppa.launchpad.net/spring/ubuntu intrepid main
deb-src http://ppa.launchpad.net/spring/ubuntu intrepid main
then i reload
it gives me the message
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 FC66403D8670A035
anyone can help me?
public key is not available
Moderator: Moderators
- insaneinside
- Posts: 29
- Joined: 06 Jul 2008, 05:13
Re: public key is not available
You can still see and install Spring-related packages in your package manager after that, right? That ought to be the case.
It's basically a matter of being able to verify that those packages were created by the person you think/are told created them -- namely, the one who owns the public key that you don't have.
If you don't want to see that error every time you update your package lists, you'll need to manually add the maintainer's GPG key using something like
wget -O- KEYURL | sudo apt-key add -
(with KEYURL replaced with the actual URL of the key file). The key URL isn't listed in the install instructions, unfortunately.
It's basically a matter of being able to verify that those packages were created by the person you think/are told created them -- namely, the one who owns the public key that you don't have.

If you don't want to see that error every time you update your package lists, you'll need to manually add the maintainer's GPG key using something like
wget -O- KEYURL | sudo apt-key add -
(with KEYURL replaced with the actual URL of the key file). The key URL isn't listed in the install instructions, unfortunately.
Re: public key is not available
when i do the command
wget -O-http://ppa.launchpad.net/spring/ubuntu | sudo apt-key add -
it replyes,
gpg: no valid OpenPGP data found.
and i cant find any spring project file in the repository.
wget -O-http://ppa.launchpad.net/spring/ubuntu | sudo apt-key add -
it replyes,
gpg: no valid OpenPGP data found.
and i cant find any spring project file in the repository.
Re: public key is not available
you have to provide the fingerprint of the key with the command!
for example: FC66403D8670A035 (copy and paste it from the error message)
Why dont you find anything? Is the repo active? The appropriate box must be checked (in the sources manager)
for example: FC66403D8670A035 (copy and paste it from the error message)
Why dont you find anything? Is the repo active? The appropriate box must be checked (in the sources manager)
Re: public key is not available
I've came across the same problem.
running the following commands fixed it.
running the following commands fixed it.
Code: Select all
gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys FC66403D8670A035 41A58AF1BE5372EB
gpg -a --export FC66403D8670A035 | sudo apt-key add -
gpg -a --export 41A58AF1BE5372EB | sudo apt-key add -