[SSH] Configuration to Backup Private Keys to Dropbox and Create Symbolic Links for Use
I’ll introduce the steps to backup SSH private keys to Dropbox while creating symbolic links to make them usable.
Backup to Dropbox
cp ~/.ssh/* ~/Dropbox/ssh/
Create Symbolic Link
rm -rf ~/.ssh/
ln -s ~/Dropbox/ssh/ ~/.ssh
chmod 600 ~/Dropbox/ssh/id_rsa
That’s all from the Gemba where we want to manage .ssh files.
That’s all from the Gemba.