Skip to content

Instantly share code, notes, and snippets.

View Alexander72's full-sized avatar

Alexander Volkov Alexander72

  • Just Eat Takeaway
  • Netherlands
View GitHub Profile
@innocuo
innocuo / convert_key.sh
Created March 16, 2017 15:17
Convert PuTTY .ppk key to OpenSSH in Ubuntu
sudo apt-get install putty-tools
#private keys
puttygen your_private_key.ppk -O private-openssh -o your_new_key
chmod 600 your_new_key
#public keys
puttygen your_public_key.ppk -O public-openssh
#based on answer at superuser