1.3 KiB
1.3 KiB
Migrate gpg keys from one workstation to another
Replace [your key] with your key ID
To obtain your key ID
gpg --list-secret-keys --keyid-format LONG
Which returns something like
/home/angela/.gnupg/pubring.kbx
-------------------------------
sec rsa4096/[your key] 2018-03-30 [SC]
ABCDEFGHIJKLMNOPQRSTUVWXYZ
uid [ unknown] angela (KEY NAME) <user@domain>
ssb rsa4096/ABCDEFGHIJKL 2018-03-30 [E]
After the key size rsa4096/
is your key ID.
Export the key in preparation to move it
gpg --export -a [your key] > gpg-pub.asc
Prepare the secret key for migration (if password protected, you'll be prompted to enter it)
gpg --export-secret-keys -a [your key] > gpg-sc.asc
Find them
ls -l gpg*.asc
Drag the key pair from the current directory to your USB stick or however else you move them.
Once on the new machine, import them
gpg --import gpg-pub.asc
If password protected, you'll be prompted to enter it
gpg --import gpg-sc.asc
If you need to adjust the trust level
gpg --edit-key [your key]
One thing to do was restart gpg-agent after importing the public key and adjusting the trust level. The secret key couldn't be imported till restarting the gpg agent.
sudo gpgconf --kill gpg-agent