Replies: 3 comments 9 replies
-
Hi @theRoboxx. I'll take a look at it and let you know. Thanks for reporting. |
Beta Was this translation helpful? Give feedback.
-
The problem is the
As a workaround: # Run the ssh agent
ssh-agent
# Export the values outputted by the previous command (using clifm's built-in export function)
export SSH_AUTH_SOCK=/tmp/ssh...
export SSH_AGENT_PID=...
# Now run ssh-add
ssh-add -t 600 ~/.ssh/id_rsa |
Beta Was this translation helpful? Give feedback.
-
Thanks for your response. I'm trying to automate this process by running a bash script. |
Beta Was this translation helpful? Give feedback.
-
I tried
to start the ssh-agent but after that I get the response
Whereas in bash and zsh
ssh-add
asks for my passphrase of the key.Do I need to start the ssh-agent with a different command?
Beta Was this translation helpful? Give feedback.
All reactions