erster Schritt Schlüssel erzeugen
$ ssh-keygen -t rsa
zweiter Schritt Schlüssel auf Zielcomputer kopieren
$ ssh-copy-id -i ~/.ssh/id_rsa.pub user@remote-system
oder kopieren mit geräderten Port
$ ssh-copy-id -i ~/.ssh/id_rsa.pub “-p port user@remote-system”
oder so kopieren
$ cat ~/.ssh/*.pub | ssh user@remote-system ‘umask 077; cat >>.ssh/authorized_keys’