BASH: Generate ssh key

# Generate the key

ssh-keygen -t rsa -b 4096

# Copy to the target machine (use ip or setup hostname in ~/.ssh/config)

ssh-copy-id user@host

# Test
ssh user@host

# Now can connect without password with...
ssh <host>

# easy peasy, no?

"Your revolution is over. The bums lost!"