SSH keys with SSH agent
Windows 11
ssh-keygen -t ed25519 -C "Orcus - [email protected]"
cat C:\Users\User/.ssh/id_ed25519.pub
Get-Service ssh-agent | Set-Service -StartupType Automatic
Start-Service ssh-agent
ssh-add $env:USERPROFILE\.ssh\id_ed25519
Kubuntu 25.04
ssh-keygen -t ed25519 -C "New Moon - [email protected]"
mkdir -p ~/.config/environment.d
nvim ~/.config/environment.d/ssh_askpass.conf
SSH_ASKPASS=/usr/bin/ksshaskpass
SSH_ASKPASS_REQUIRE=prefer
logout
- Previous: Installing Atuin
- Next: Updating 11ty from version 2 to 3