It seems that ssh-agent is not starting on my OpenSuSE system. When I run pgrep -fl ssh-agent, the result is blank. On my Linux Mint laptop, I get 1785 /usr/bin/ssh-agent /usr/bin/dbus-launch --exit-with-session x-session-manager.
How do I fix this? Can anyone with OpenSuSE check to see if it's not started up by default, or if I maybe messed something up?
things tried...
I've tried adding the following to .xinitrc,
if test -S "$SSH_AUTH_SOCK" -a -x "$SSH_ASKPASS"; then
ssh-add < /dev/null
fi
and my .xsession file contains,
ssh-agent {
ssh-add &
startkde
}
but neither of these things seems to do anything. Thanks in advance!!