Additions:
Additions:
secure shell
enable login to a remote ssh server without entering a password
REFERRERS
SystemServices
Deletions:
login to a remote ssh server without a password
Additions:
$ ssh remote-server
$ exit
Additions:
window title
login to a remote ssh server without a password
first create a RSA key on your local server and copy it to the remote server
$ ssh-keygen -t rsa
$ scp .ssh/id_rsa.pub remote-server:
ssh to remote server and add your RSA key to the list of authorized keys
$ cat id_rsa.pub
.ssh/authorized_keys
disconnect and the next time you ssh to the remote server it shouldn't ask you for the password
ssh
So you see from you window title which machine you have ssh'd to you might like to define
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME\%\%.*}:${PWD/#$HOME/~}\007"'
HOSTNAME should just be HOSTNAME<percent><percent> without backslashes