ssh keys
ssh-keygen -t rsa This will prompt you for a secret passphrase. If this is your primary identity key, make sure to use a good passphrase. If this works right you will get two files called id_rsa and id_rsa.pub in your .ssh dir. ssh-copy-id -i ~/.ssh/id_rsa.pub username@mystery Now remote is ready to accept your ssh key. How to tell it which keys to use? The ssh-add command will do it. For...
Read More