Wednesday, May 18, 2016

How To Solve GPG error:http://ppa.launchpad.net In Ubuntu And Its Derivatives

How To Solve
GPG error:http://ppa.launchpad.net
In Ubuntu And Its Derivatives


GPG error on ubuntu
Get:55 http://archive.ubuntu.com trusty-security/multiverse Translation-en [2,570 B] Get:56 http://archive.ubuntu.com trusty-security/restricted Translation-en [3,206 B] Get:57 http://archive.ubuntu.com trusty-security/universe Translation-en [75.8 kB] Hit http://archive.ubuntu.com trusty Release Hit http://archive.ubuntu.com trusty/main Sources Hit http://archive.ubuntu.com trusty/restricted Sources Hit http://archive.ubuntu.com trusty/universe Sources Hit http://archive.ubuntu.com trusty/universe i386 Packages Hit http://archive.ubuntu.com trusty/multiverse i386 Packages Hit http://archive.ubuntu.com trusty/multiverse Translation-en Hit http://archive.ubuntu.com trusty/restricted Translation-en Hit http://archive.ubuntu.com trusty/universe Translation-en Ign http://archive.ubuntu.com trusty/main Translation-en_IN Ign http://archive.ubuntu.com trusty/multiverse Translation-en_IN Ign http://archive.ubuntu.com trusty/restricted Translation-en_IN Ign http://archive.ubuntu.com trusty/universe Translation-en_IN Fetched 5,467 kB in 1min 5s (82.9 kB/s) Reading package lists... Done W: GPG error: http://ppa.launchpad.net trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FE1FFCE65CB95493

The above error occured when i ran sudo apt-get update on Ubuntu 14.04. After fetching the required updates it showed me an error at the bottom - W: GPG error: http://ppa.launchpad.net trusty InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY FE1FFCE65CB95493

Obviously , The solution is , we need to download keys from Ubuntu key server..
Now, see how to do that..

All You have to do to solve this problem is.. open the terminal and run the following command..

gpg --keyserver subkeys.pgp.net --recv FE1FFCE65CB95493 && gpg --export --armor FE1FFCE65CB95493 | sudo apt-key add -

Friends , Don't forget to replace the FE1FFCE65CB95493 with the one included in your error message

However , i got timed out error, first time, when i ran this (gpg --keyserver subkeys.pgp.net --recv FE1FFCE65CB95493) .. but when i ran it second time ,it just works fine for me.. Hope it will be usefull.. Share it with your friends..

shivaraj@shivaraj-A14RM0E:~$ gpg --keyserver subkeys.pgp.net --recv FE1FFCE65CB95493 gpg: directory `/home/shivaraj/.gnupg' created gpg: new configuration file `/home/shivaraj/.gnupg/gpg.conf' created gpg: WARNING: options in `/home/shivaraj/.gnupg/gpg.conf' are not yet active during this run gpg: keyring `/home/shivaraj/.gnupg/secring.gpg' created gpg: keyring `/home/shivaraj/.gnupg/pubring.gpg' created gpg: requesting key 5CB95493 from hkp server subkeys.pgp.net gpg: keyserver timed out gpg: keyserver receive failed: keyserver error shivaraj@shivaraj-A14RM0E:~$ gpg --keyserver subkeys.pgp.net --recv FE1FFCE65CB95493 gpg: requesting key 5CB95493 from hkp server subkeys.pgp.net gpg: /home/shivaraj/.gnupg/trustdb.gpg: trustdb created gpg: key 5CB95493: public key "Launchpad PPA for Vincent Cheng" imported gpg: Total number processed: 1 gpg: imported: 1 (RSA: 1) shivaraj@shivaraj-A14RM0E:~$ gpg --export --armor FE1FFCE65CB95493 | sudo apt-key add - OK

You can do it in GUI way.. You can Find Gui method here..

And see Other Ubuntu Related posts and More Popular posts on opensource ..


Blog Archive