Does any one know ssh -i equivalent for sshfs ? I want to use sshfs without promting for a password

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

The best solution would be ssh-agent as Zoredache suggests.

Another is to put your key in ~/.ssh/id_rsa, that way it will be detected automatically. (Use id_dsa for DSA keys.)

Yet another is ~/.ssh/config. Put something like this in it (see manual page of ssh_config for further details)

Host somebox.somedomain.tld
  User joe
  IdentityFile ~/key_for_somebox

Host *
  IdentityFile ~/key_for_everything_else
link|improve this answer
I discovered the awesome usefulness of the ssh config file not too long ago. It is very useful for multiple key setups. – jdizzle Jan 25 '10 at 13:54
feedback

Setup your system to use the SSH Agent and add your key to the agent. If you are using a recent Linux distro (ie Ubuntu and others) ssh-agent may already be setup for you. All you have to do type ssh-add key.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown