Convert PuTTY Key to OpenSSH Key
Install PuTTYgen
# Install in Linux
sudo apt install putty-toolsGenerate Key Pair
# -t: key type
# -b: number of bits
# -C: key comment
# -o: output file
puttygen -t rsa -b 2084 -C "user@example.com" -o keyfile.ppkPuTTY to SSH Key
# SSH private key
puttygen keyfile.ppk -O private-openssh -o id_rsa
# SSH public key
puttygen keyfile.ppk -O public-openssh -o id_rsa.pubLast updated