Setting up Slackware 13 (64-bit) (part 3)

Make your server trust your laptop+user: #su – “your username here” $ssh-keygen -t rsa $scp ~/.ssh/id_rsa.pub “remote_username”@”host_name”:”target_filepath_for_key_on_the_server” Now ssh into your server: $ssh “remote_user”@”host_name” $cd ~/.ssh Insert your laptop’s public key in the authorized keys list: $cat “target_filepath_for_key_on_the_server” >> authorized_keys Try ssh-ing your server again (this time you should not… Continue reading