Code of Conduct Signiture Generation Problem

Asked by Mark J Warren

Opened Terminal

gpg --fingerprint

GPG - Did not display a message giving KEY ?

Ubuntu 10.4.4 - New install

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
GREG T.
Solved:
Last query:
Last reply:
Revision history for this message
actionparsnip (andrew-woodhead666) said :
#1
Revision history for this message
GREG T. (ubuntuer) said :
#2

i tried to sign the code of conduct again today and got as far as the encrypted email and following the helps from ubuntu code of conduct page i could not get the email to decrypt . so i desided it is just not worth it . i have tried this 3 or 4 time same effects all times .

Revision history for this message
Best GREG T. (ubuntuer) said :
#3

Generating your key in Ubuntu

The easiest way to generate a new OpenPGP key in Ubuntu is to use the Passwords and Encryption Keys tool.

Step 1: Open Applications > Accessories > Passwords and Encryption Keys.

Step 2: Select File > New, select PGP Key and then follow the on-screen instructions.

Now you'll see your new key listed in the Passwords and Encryption Keys tool.
Publishing your key

Your key is useful only if other people can verify items that you sign. By publishing your key to a keyserver, which acts as a directory of people's public keys, you can make your public key available to anyone else.

Before you add your key to Launchpad, you need to push it to the Ubuntu keyserver.

Step 1: Open a terminal and type:

gpg --list-keys

Step 2: You'll see a list of OpenPGP keys in your system, including the one you've just created, which look something like this:

pub 1024D/12345678 2007-01-26
uid Geoffrey Hayes (My OpenPGP key) <email address hidden>
sub 2048g/9ABCDEF1 2007-01-26

In the example above, 1024D/12345678 is the key's public id. We need the second part, i.e. 12345678. Copy that part of your key's public id.

Step 3: Enter:

gpg --send-keys --keyserver keyserver.ubuntu.com 12345678

Note: Replace 12345678 with the public key id you copied in the step 2.

If successful, GPG will display a message similar to:

gpg: sending key 12345678 to hkp server keyserver.ubuntu.com

It can take up to ten minutes before your key is available to Launchpad. After that time, you're ready to import your new key into Launchpad!

Revision history for this message
Mark J Warren (markjwarren) said :
#4

Thanks greg, that solved my question.