Skip to content

Instantly share code, notes, and snippets.

@vladimir-e
Last active December 15, 2015 08:09
Show Gist options
  • Save vladimir-e/5229258 to your computer and use it in GitHub Desktop.
Save vladimir-e/5229258 to your computer and use it in GitHub Desktop.
Copy public key to remote server #ssh #console
`mkdir .ssh`
cat ~/.ssh/id_rsa.pub | ssh user@domain.com 'cat >> ~/.ssh/authorized_keys'
# optional
sudo chmod 700 .ssh
sudo chmod 640 .ssh/authorized_keys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment