Can not download GPG error

Asked by abayu2000

Hi everyone,
Anytime I want to download updates I get this error

GPG error: http://repository.cairo-dock.org hardy Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 1392A97E41317877Failed to fetch http://ppa.launchpad.net/ubuntume.team/ubuntu/dists/hardy/main/binary-i386/Packages.gz 404 Not Found
Failed to fetch http://ppa.launchpad.net/ubuntume.team/ubuntu/dists/hardy/main/source/Sources.gz 404 Not Found
Some index files failed to download, they have been ignored, or old ones used instead.

Question information

Language:
English Edit question
Status:
Answered
For:
Apache OpenID Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1

gpg --keyserver keyserver.ubuntu.com --recv 41317877; gpg --export --armor 41317877 | sudo apt-key add - ; sudo apt-get update

Will do you, its the same ANY time yuo get that error, just use the last 8 didgits of the code you get.

I personally have this in a script called 'getkey'

!/bin/bash

if [ $# -eq 0 ] # Must have key to add
then
  echo "Please supply key"
  exit 65
fi

gpg --keyserver keyserver.ubuntu.com --recv $1
gpg --export --armor $1 | sudo apt-key add -

Basically I give it the 8 character code and it does the rest. Good times.

Can you help with this problem?

Provide an answer of your own, or ask abayu2000 for more information if necessary.

To post a message you must log in.