On Thu, Jan 11, 2007 at 01:02:42 -0800, rangalo wrote: > Hi, > > I thanks for you suggestions. > > I tried the faq but while importing the multimedia key, I get following > message > ------------- > [code] > > gpg --keyserver wwwkeys.eu.pgp.net --recv-keys 07DC563D1F41B907 && > apt-key add /root/.gnupg/pubring.gpg && apt-get update
[...] > After this when I do apt-get update again, I get the same message Once you have run the "--rev-keys" command successfully, you can do gpg -a --export 1F41B907 | sudo apt-key add - to add the key to apt's keyring. (Replace "sudo" with your preferred method of getting root if desired.) [...] > W: GPG error: http://www.debian-multimedia.org testing Release: The > following signatures couldn't be verified because the public key is not > available: NO_PUBKEY 07DC563D1F41B907 > W: You may want to run apt-get update to correct these problems > > Any idea, what is the problem, or how I can get rid of it ? > > I also tried downloading the key manually, and trying to export with > gpg to a file, but I get the same message. If you have downloaded the key as a separate file then you can feed this file to apt-key directly (assuming the file is called marillat.txt): sudo apt-key add marillat.txt The key file has to start like this: -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.6 (GNU/Linux) In any case you can check with "sudo apt-key list" if the key has indeed been added. -- Regards, Florian -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

