This is a discussion on Fresh Slack Install. How to retrieve PGP private key? within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> Hello, I have just moved from one machine to another and completely reinstalled slack 10. (Nothing like a fresh ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello, I have just moved from one machine to another and completely reinstalled slack 10. (Nothing like a fresh install to get your blood flowing.) Here is what I would like to do: -I generated a set of pgp keys on my old machine -I'd like to retrieve them and implement them on the new machine. Where is this stuff stored? -Thanks Josh Beck |
| |||
| On Mon, 22 Nov 2004 01:44:42 +0000, Josh Beck wrote: > Hello, > > I have just moved from one machine to another and completely > reinstalled slack 10. (Nothing like a fresh install to get your blood > flowing.) Here is what I would like to do: > -I generated a set of pgp keys on my old machine > -I'd like to retrieve them and implement them on > the new machine. Where is this stuff stored? > -Thanks > Josh Beck It will be under the home directory of the user that generated the original key pair in the .gnupg directory. Just install gpg on your new system, then copy over the contents of your old ~/.gnupg directory to the new one. |
| ||||
| If you just want the keys, not the whole dir: gpg -a -o publickey.asc --export-key user@domain.com gpg -a -o privatekey.asc --export-secret-key user@domain.com |