Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

ssh and scp without typing a password each time (See related posts)

* You can create and exchange ssh keys to avoid repeatedly typing your password.

Source: ssh-keygen -t dsa Type this once per log-in session
Source: Now copy the .ssh/id_dsa.pub file to <Destination>.
Source: scp .ssh/id_dsa.pub userid@<Destination>:tempid we've renamed it tempid.
Destination: cat tempid >> .ssh/authorized_keys
add the contents of tempid to .ssh/authorized_keys.
Destination: rm tempid.

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts