In some situations, you are given only a ppk file for access to a cloud server. You know, however, it’s for Putty on windows, not for OpenSSH client which might be the most familiar to you.πŸ€”

This post explains a method to convert a ppk file into a pem file so that you can login to the linux server with ssh command that you are most familiar with.

First off, install putty-tools on your machine.

1
sudo apt-get install putty-tools

Then convert your *.ppk file into a *.pem file like so:

1
puttygen ppkfilename.ppk -O private-openssh -o pemfilename.pem

Pretty simple, isn’t it? πŸ™‚

Secure the pem file, it’s important, as you may know.

1
chmod 400 pemfilename.pem

Now you can ssh to the server using the PEM file.

1
ssh -i pemfilename.pem user@server-ip

Thanks for reading!