How would I go about doing this on the terminal?

sftp then asks me for a password. how do I include my DSA key so that I do not have to use the password?

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

As sftp uses SSH protocol for communication, you may generate private/public key pair using ssh-keygen (read everything their!). Then read this HOWTO about how to transfer your key to remote server. If you need more, read more detailed description of OpenSSH Public Key Authentication.

If you setup your key correctly, and remove SSH server is configured to use key authentication, you will be granted the access without additional password.

link|improve this answer
feedback

If you have ssh-agent running, holding the key to the site, it will handle authentication for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.