Many administrative tasks require to connect to an ssh server without being asked for a password, this can be accomplished with the following step by step instructions:
1) In the client machine create the keys:
ssh-keygen -b 1024 -t rsa
cd ~/.ssh
2) Copy the id_pub.rsa key to the Server machine:
scp id_rsa.pub server:~/.ssh
3) Login into the Server and add [...]




