<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Install PuTTY on Linux	</title>
	<atom:link href="https://www.tecmint.com/install-putty-on-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/install-putty-on-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Tue, 14 Jan 2025 04:13:33 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2260394</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Tue, 14 Jan 2025 04:13:33 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=35294#comment-2260394</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2259563&quot;&gt;BenLeTib&lt;/a&gt;.

@BenLeTib

Thanks for the feedback! I’ve updated the instructions in the article with the method you provided...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2259563">BenLeTib</a>.</p>
<p>@BenLeTib</p>
<p>Thanks for the feedback! I’ve updated the instructions in the article with the method you provided&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: BenLeTib		</title>
		<link>https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2259563</link>

		<dc:creator><![CDATA[BenLeTib]]></dc:creator>
		<pubDate>Fri, 10 Jan 2025 18:11:25 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=35294#comment-2259563</guid>

					<description><![CDATA[The section about compiling &lt;strong&gt;PuTTY&lt;/strong&gt; on &lt;strong&gt;Linux&lt;/strong&gt; is outdated and doesn&#039;t work with the latest versions of &lt;strong&gt;PuTTY&lt;/strong&gt;. 

Please consider using the following method, tested with &lt;strong&gt;PuTTY&lt;/strong&gt; version &lt;strong&gt;0.82&lt;/strong&gt; on &lt;strong&gt;Ubuntu 20.04&lt;/strong&gt;:
&lt;pre&gt;
# Install required dependencies
sudo apt install -y cmake build-essential libssl-dev libgtk-3-dev

# Navigate to a directory for manual installations (e.g., `~/Applications`, `/opt`, or your preferred location)
cd ~

# Download and extract the PuTTY source code
wget https://the.earth.li/~sgtatham/putty/latest/putty-0.82.tar.gz
tar -xvf putty-0.82.tar.gz
cd putty-0.82

# Create a build directory for a cleaner approach
mkdir build
cd build

# Compile the source code
cmake ..
make

# Test the `puttygen` command locally
./puttygen --version

# Install PuTTY system-wide
sudo apt remove putty putty-tools  # Remove any existing APT-installed versions
sudo make install

# Verify the global `puttygen` command
cd ~
puttygen --version
&lt;/pre&gt;
Let me know if you encounter any issues with this method!
]]></description>
			<content:encoded><![CDATA[<p>The section about compiling <strong>PuTTY</strong> on <strong>Linux</strong> is outdated and doesn&#8217;t work with the latest versions of <strong>PuTTY</strong>. </p>
<p>Please consider using the following method, tested with <strong>PuTTY</strong> version <strong>0.82</strong> on <strong>Ubuntu 20.04</strong>:</p>
<pre>
# Install required dependencies
sudo apt install -y cmake build-essential libssl-dev libgtk-3-dev

# Navigate to a directory for manual installations (e.g., `~/Applications`, `/opt`, or your preferred location)
cd ~

# Download and extract the PuTTY source code
wget https://the.earth.li/~sgtatham/putty/latest/putty-0.82.tar.gz
tar -xvf putty-0.82.tar.gz
cd putty-0.82

# Create a build directory for a cleaner approach
mkdir build
cd build

# Compile the source code
cmake ..
make

# Test the `puttygen` command locally
./puttygen --version

# Install PuTTY system-wide
sudo apt remove putty putty-tools  # Remove any existing APT-installed versions
sudo make install

# Verify the global `puttygen` command
cd ~
puttygen --version
</pre>
<p>Let me know if you encounter any issues with this method!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2056801</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 11 Sep 2023 05:06:24 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=35294#comment-2056801</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2055503&quot;&gt;NickG&lt;/a&gt;.

@NickG,

Thank you for the clarification and the update. It&#039;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!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2055503">NickG</a>.</p>
<p>@NickG,</p>
<p>Thank you for the clarification and the update. It&#8217;s essential for users to be aware of these changes, especially when transitioning between versions. </p>
<p>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. </p>
<p>Appreciate your contribution to the community!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: NickG		</title>
		<link>https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2055503</link>

		<dc:creator><![CDATA[NickG]]></dc:creator>
		<pubDate>Thu, 07 Sep 2023 11:46:06 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=35294#comment-2055503</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-1998815&quot;&gt;Ravi Saive&lt;/a&gt;.

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

The &lt;strong&gt;cmake&lt;/strong&gt; 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 &#039;&lt;strong&gt;putty&lt;/strong&gt;&#039; executable is generated (giving the GUI interface) can first install libgtk-3-0  (for Ubuntu &#039;&lt;code&gt;sudo apt-get install libgtk-3-0&lt;/code&gt;&#039; ).]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-1998815">Ravi Saive</a>.</p>
<p>I recently commented that the latest version was <strong>0.79</strong> and there was no &#8216;<strong>configure</strong>&#8216; file. I have since been in contact with the putty developers who said that they have used the <strong>cmake</strong> method described in the <strong>README</strong> file (which is in the <strong>putty-0.79</strong> directory) since version <strong>0.77</strong> so no &#8216;<strong>configure</strong>&#8216; file. </p>
<p>The <strong>cmake</strong> 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 &#8216;<strong>putty</strong>&#8216; executable is generated (giving the GUI interface) can first install libgtk-3-0  (for Ubuntu &#8216;<code>sudo apt-get install libgtk-3-0</code>&#8216; ).</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: NickG		</title>
		<link>https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-2053830</link>

		<dc:creator><![CDATA[NickG]]></dc:creator>
		<pubDate>Tue, 05 Sep 2023 16:56:42 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=35294#comment-2053830</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-1998815&quot;&gt;Ravi Saive&lt;/a&gt;.

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 &#039;tar&#039; command and &#039;cd putty-079&#039; gets to a directory that does not contain a &#039;configure&#039; file and the following &#039;make&#039; 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]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/install-putty-on-linux/comment-page-1/#comment-1998815">Ravi Saive</a>.</p>
<p>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 &#8216;tar&#8217; command and &#8216;cd putty-079&#8217; gets to a directory that does not contain a &#8216;configure&#8217; file and the following &#8216;make&#8217; commands do not work. </p>
<p>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</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
