Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

convert pem to ppk ubuntu

puttygen key.pem -o key.ppk
Comment

how to convert ppk to pem in 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
Comment

convert ppk to pem

puttygen server1.ppk -O private-openssh -o server1.pem
Comment

convert pem to ppk

Convert .pem to .ppk file format Using Putty(Windows)
 
To convert the .pem file .ppk follow below points
 
	1. First you need to download Putty from here.
	2. Then run puttygen to convert .PEM file to .PPK file.
	3. Start puttygen and select “Load”
	4. Select your .PEM file.
	5. Putty will convert the .PEM format to .PPK format.
	6. Select “Save Private Key” A passphrase is not required but can be used if additional security is required.
Comment

PREVIOUS NEXT
Code Example
Shell :: bash: /usr/bin/ng: No such file or directory 
Shell :: fail2ban apt 
Shell :: how to find maven home in linux 
Shell :: git commit disable hooks 
Shell :: gradle init java application 
Shell :: shell shortcuts 
Shell :: TTTTTTTT 
Shell :: docker run restart on boot 
Shell :: error: ‘thread’ is not a member of std 
Shell :: how to uninstall apps without admin password 
Shell :: git diff previous commit 
Shell :: install module to current directory pip 
Shell :: install mocha 
Shell :: save output of command to craible bash 
Shell :: git set alias 
Shell :: Yarn .gitignore for Zero Installs 
Shell :: install zotero linux 
Shell :: git track lfs 
Shell :: powershell install oh-my-posh 
Shell :: who create git 
Shell :: git revert commit 
Shell :: windows view processes command line 
Shell :: get public ipv6 linux 
Shell :: git add commit in one command 
Shell :: git filter-branch remove file 
Shell :: aws cli config profile 
Shell :: docker access denied 
Shell :: run powershell script at startup 
Shell :: read line by using linnumber shell 
Shell :: how to push to heroku 
ADD CONTENT
Topic
Content
Source link
Name
5+1 =