“преобразовать PEM в PPK Ubuntu” Ответ

преобразовать PEM в PPK Ubuntu

puttygen key.pem -o key.ppk
Lucky Lion

Как преобразовать PPK в PEM в Linux

1.install putty-tools with the following command:
	sudo apt-get install putty-tools
2.Now convert your .ppk file to .pem using the following command:
	puttygen yourkey.ppk -O private-openssh -o yourkey.pem
3.Set the proper permission to use the .pem file with following command:
	chmod 400 yourkey.pem
4.Connect to you server using the following command
	ssh -i yourkey.pem serverusername@server-ip
Poor Plover

Ответы похожие на “преобразовать PEM в PPK Ubuntu”

Вопросы похожие на “преобразовать PEM в PPK Ubuntu”

Больше похожих ответов на “преобразовать PEM в PPK Ubuntu” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования