Regression in SSH agent in recent images
Hello, for the past few days I have noticed a strange regression while using SSH — I always need to type my passphrase twice (I have two machines with KDE Linux, and both face the same issue).
`ssh cxxxx`
`Enter passphrase for key '/home/korewamessatsu/.ssh/id_rsa':`
`Enter passphrase for key '/home/korewamessatsu/.ssh/id_rsa':`
`Linux cxxxx 6.12.48+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.48-1 (2025-09-20) x86_64Last login: Mon Mar 16 14:35:57 2026 from 185.135.90.238`
And I have to do it every time I try to connect to some **machines**. As a workaround, I put this in my .bashrc
`SSH_ENV="$HOME/.ssh/agent.env"`
`start_agent() { ssh-agent > "SSH_ENV" chmod 600 "SSH_ENV" source "$SSH_ENV" > /dev/null ssh-add }`
`if [ -f "SSH_ENV" ]; then source "SSH_ENV" > /dev/null`
`kill -0 "$SSH_AGENT_PID" 2>/dev/null || start_agent else start_agent fi`
issue