Comments on: How to Install PuTTY on Linux https://www.tecmint.com/install-putty-on-linux/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Mon, 11 Sep 2023 05:06:24 +0000 hourly 1 By: Ravi Saive https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2056801 Mon, 11 Sep 2023 05:06:24 +0000 https://www.tecmint.com/?p=35294#comment-2056801 In reply to NickG.

@NickG,

Thank you for the clarification and the update. It’s essential for users to be aware of these changes, especially when transitioning between versions.

Your tip about ensuring the libgtk-3-0 library is installed for the GUI interface is invaluable. This will undoubtedly assist many users who might be facing similar issues.

Appreciate your contribution to the community!

]]>
By: NickG https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2055503 Thu, 07 Sep 2023 11:46:06 +0000 https://www.tecmint.com/?p=35294#comment-2055503 In reply to Ravi Saive.

I recently commented that the latest version was 0.79 and there was no ‘configure‘ file. I have since been in contact with the putty developers who said that they have used the cmake method described in the README file (which is in the putty-0.79 directory) since version 0.77 so no ‘configure‘ file.

The cmake method seems to work but will only generate the command line tools if the gtk library is not in the correct condition. To make sure the ‘putty‘ executable is generated (giving the GUI interface) can first install libgtk-3-0 (for Ubuntu ‘sudo apt-get install libgtk-3-0‘ ).

]]>
By: NickG https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2053830 Tue, 05 Sep 2023 16:56:42 +0000 https://www.tecmint.com/?p=35294#comment-2053830 In reply to Ravi Saive.

There is a problem in that the wget command no longer works since the latest version is 0.79. Changing wget to download 0.79 and then carrying out the ‘tar’ command and ‘cd putty-079’ gets to a directory that does not contain a ‘configure’ file and the following ‘make’ commands do not work.

If there have been changes from 0.78 there does not seem to be any documentation. I have been unable to find an archive for 0.78

]]>
By: rahul https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2046639 Sat, 19 Aug 2023 12:29:09 +0000 https://www.tecmint.com/?p=35294#comment-2046639 In reply to Yamen.

I didn’t get any ./configure file inside the folder, where did you get the putty.0.78?

]]>
By: Ravi Saive https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2039994 Fri, 28 Jul 2023 06:24:15 +0000 https://www.tecmint.com/?p=35294#comment-2039994 In reply to Hemant Sah.

@Hemant,

This error typically occurs when you are trying to compile a software package from source code, but the necessary configuration files are missing.

In this case, it seems like you are trying to compile PuTTY version 0.79. To successfully compile software from source, you generally need to follow these steps:

$ wget https://the.earth.li/~sgtatham/putty/latest/putty-0.79.tar.gz
$ tar -xvf putty-0.79.tar.gz
$ cd putty-0.79/
$ ./configure
$ sudo make && sudo make install
]]>