gpg: what do I need to backup?
Solution 1:
The most critical are your secret/private keys:
gpg --export-secret-keys > secret-backup.gpg
secret-backup.gpg is then the file to keep safe.
Otherwise the ~/.gnupg/ directory contain all private and public keys(secring.gpg and pubring.gpg respectively) as well as configuration and trustdb which could be convenient to have stored.
Solution 2:
The easiest way would be to grab the entire GnuPG directory - usually ~/.gnupg/
, it contains all private keys you have, as well as the public keyring and other useful data (trustdb, etc.)
Solution 3:
There is nothing special. Let's assume your@id.here
is your ID.:
Export keys and ownertrust:
gpg --export --armor your@id.here > your@id.here.pub.asc
gpg --export-secret-keys --armor your@id.here > your@id.here.priv.asc
gpg --export-secret-subkeys --armor your@id.here > your@id.here.sub_priv.asc
gpg --export-ownertrust > ownertrust.txt
Import keys and ownertrust:
gpg --import your@id.here.pub.asc
gpg --import your@id.here.priv.asc
gpg --import your@id.here.sub_priv.asc
gpg --import-ownertrust ownertrust.txt
Ultimately trust the imported key:
gpg --edit-key your@id.here
gpg> trust
Your decision? 5 (Ultimate trust)
Solution 4:
You definitely want to backup your private key and the revocation file you created.