Tag: ssh

0

Create New SSH Keys on Mac OSX Sierra

Generate new keys osx sierrassh-keygen -t rsa Set permissionssudo chmod 600 ~/.ssh/id_rsa cat ~/.ssh/id_rsa Check newly created keyssh-keygen -l -f ~/.ssh/id_rsa.pub Copy public key to

0

Install Sshpass on OSX

Ever needed to run ssh commands from a non-interactive shell, and not being able to use keys? Well sshpass is what you need! I use it for running ssh commands from Automator scripts on OSX. It is qui