如何在 ubuntu 20.04 中安装 puttygen 版本 >=0.75

如何在 ubuntu 20.04 中安装 puttygen 版本 >=0.75

我有文件 .ppk 版本 3,但似乎 putty 版本必须 >=0.75 才能处理这个文件 .ppk 版本 3。

我找到的信息:https://www.chiark.greenend.org.uk/~sgtatham/putty/wishlist/ppk3.html

我已经阅读并尝试了许多在 ubuntu 20.04 中安装 putty 版本 0.75 的方法,但似乎 ubuntu 20.04 只支持 putty 版本 <= 0.73。

有人能告诉我如何在 ubuntu 20.04 中安装 putty 版本 >=0.75 吗?

答案1

在终端上运行以下命令

# If putty is installed, uninstall it
sudo apt remove putty-tools

# Download the unix source code of the 0.76 version of putty
mkdir putty_source_code
cd putty_source_code
wget https://the.earth.li/~sgtatham/putty/0.76/putty-0.76.tar.gz

# Extract the unix code
tar -xvf putty-0.76.tar.gz
cd putty-0.76

# Compile the unix code
./configure
make
sudo cp puttygen /usr/bin/

# Check if the version was installed correctly
puttygen --version # Should output something similar to `puttygen: Release 0.76`

# Change to the directory with the .ppk file
cd <dir_with_ppk_key> 
puttygen <ppk_key_name.ppk> -O private-openssh -o pem_generated_file.pem
# You should now have the converted key on the directory 

相关内容