329 bytes added ,  4 November 2021
→‎Install byobu: Copy secret key from primary gpg
→‎Install byobu: Copy secret key from primary gpg
Line 200: Line 200:
# yum -y install byobu
# yum -y install byobu
# byobu-select-backend screen
# byobu-select-backend screen
</source>
=== Copy secret key from primary gpg ===
On the base machine:
<source lang="console">
$ gpg --export-secret-key -a > secretkey.asc
</source>
Copy the secretkey.asc from the base machine to the new box. Then delete it using shred.
<source lang="console">
$ gpg --import secretkey.asc
$ shred --remove secretkey.asc
</source>
</source>