View Single Post
  #4   (View Single Post)  
Old 20th August 2008
Darwimy Darwimy is offline
Port Guard
 
Join Date: Jun 2008
Location: Germany
Posts: 36
Default

Using ssh-agent isn't that difficult and makes things a lot easier especially if used with security/keychain. Just install keychain and add the following line to your .cshrc file:
Code:
eval `keychain --eval id_rsa`
Note the use of single backticks. This tells keychain to load the id_rsa file you created earlier. After this you don't have to start ssh-agent everytime you login.
Reply With Quote