PDA

View Full Version : [ubuntu] XBMC repository and KEY issues



mcneilly
April 11th, 2009, 06:08 PM
i've been trying to install XBMC onto my newly installed intrepid machine, but i've been running into some difficulties installing the repositories, first when I added the repository


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 43C0AFF0D7FAE680
W: You may want to run apt-get update to correct these problems


I have since found out that they key is 0x6d975c4791e7ee5e

to try and install said key I entered

sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0x6d975c4791e7ee5e

and in response received

Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --recv-keys --keyserver keyserver.ubuntu.com 0x6d975c4791e7ee5e
gpg: requesting key 91E7EE5E from hkp server keyserver.ubuntu.com
gpg: key 91E7EE5E: "Launchpad PPA for XBMC for Linux" not changed
gpg: Total number processed: 1
gpg: unchanged: 1

any help as to how to actually update the key?

Partyboi2
April 12th, 2009, 01:16 AM
Open a terminal and type or paste

gpg --keyserver keyserver.ubuntu.com --recv 43C0AFF0D7FAE680
gpg --export --armor 43C0AFF0D7FAE680 | sudo apt-key add -

then

sudo apt-get update

iluciv
April 19th, 2009, 10:26 AM
Hi when running the above I get the following error



~$ sudo gpg --keyserver keyserver.ubuntu.com --recv 43C0AFF0D7FAE680
gpg: WARNING: unsafe ownership on configuration file `/home/iluciv/.gnupg/gpg.conf'
gpg: external program calls are disabled due to unsafe options file permissions
gpg: keyserver communications error: general error
gpg: keyserver receive failed: general error


Also tired to add the text file key following this direction
https://help.launchpad.net/Packaging/PPA#Adding%20a%20PPA%20to%20your%20Ubuntu%20reposi tories

It adds the file into the section with out issue but apt-get update still gives the public key error.

This is a brand new install of Ubuntu intrepid is it a permission issue?

Partyboi2
April 19th, 2009, 01:01 PM
Try without using sudo so the command would be

gpg --keyserver keyserver.ubuntu.com --recv 43C0AFF0D7FAE680
then

gpg --export --armor 43C0AFF0D7FAE680 | sudo apt-key add -

iluciv
April 19th, 2009, 01:30 PM
Your a Gentleman and a scholar! my thanks to you :D