update manager reports no key found.

Asked by robert

I can't sudo apt-get update also when finished loading everything it states no_public key. Here is the example:

W: GPG error: http://packages.medibuntu.org intrepid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 2EBC26B60C5A2783
W: You may want to run apt-get update to correct these problems.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu update-manager Edit question
Assignee:
No assignee Edit question
Solved by:
Connor Imes
Solved:
Last query:
Last reply:

This question was originally filed as bug #404735.

Revision history for this message
Best Connor Imes (ckimes) said :
#1

Hi robert, it sounds like you just haven't imported the key yet. Directions are available at https://help.ubuntu.com/community/Medibuntu
There are a total of 3 commands that need to be run:

1)
   sudo wget http://www.medibuntu.org/sources.list.d/`lsb_release -cs`.list --output-document=/etc/apt/sources.list.d/medibuntu.list; sudo apt-get -q update; sudo apt-get --yes -q --allow-unauthenticated install medibuntu-keyring; sudo apt-get -q update

2) If you are using Jaunty:
   sudo wget http://www.medibuntu.org/sources.list.d/jaunty.list --output-document=/etc/apt/sources.list.d/medibuntu.list
Directions are available on the page for other stable versions of Ubuntu. For Karmic (dev), it is the same command, except you use "karmic.list" in place of "jaunty.list".

3)
   sudo apt-get update && sudo apt-get install medibuntu-keyring && sudo apt-get update

Revision history for this message
robert (raweinstein) said :
#2

Thanks Connor Imes, that solved my question.