I recently deleted the contents of my ~/.ssh
directory and generated new keys. They new ones work fine, but every once in a while I am getting a gui dialog titled OpenSHH from asking for the passphrase. How can I find out what process/application is issuing the prompt. I am using Mint 17.
I've tried to find out what the parent process of sss-agent is, but it is just cinnamon-session...
Any ideas what this might be, or how to find out?
grep -L ENCRYPTED ~/.ssh/id_[rd]sa
– devnull Nov 01 '14 at 12:58Proc-Type: 4,ENCRYPTED
, then you created an ssh key with a passphrase. Generate a new key like this:ssh-keygen -b 2048
, hit enter when it asks for a phasephrase, and then enter again to confirm. – devnull Nov 01 '14 at 13:10unset SSH_ASKPASS
– devnull Nov 01 '14 at 13:29