Categories: TutorialsUbuntu

How to Install PuTTy on Linux

PuTTy is a popular & open source SSH and telnet client used widely by web developers and system administrators all over the world. Although it is typically used in Windows environment, it is also well-known among Linux administrators. In fact, often people prefer to use PuTTy instead of using the default ssh client available in every Linux system, due to its ease of use and familiarity in case you have used it on Window before. But PuTTy is not available by default on Linux systems. So we will learn how to install PuTTy on Linux.

How to Install PuTTy on Linux

Sponsored

Here are the steps to install PuTTy on different Linux distributions.

Install PuTTy on Ubuntu

First, we have to add universe repository on your system. Then you need to update the system to be able to access the PuTTy packages. Lastly, we install it using apt command, as shown below.

$ sudo add-apt-repository universe
$ sudo apt update
$ sudo apt install putty

You can install it using its icon in GUI or using the following command.

$ putty

Install PuTTy on Debian

Like Ubuntu, you can also install PuTTy on Debian systems, with the following command.

$ sudo apt-get install putty

Install PuTTy on Redhat, CentOS, Fedora, SUSE Linux

You can also install PuTTy on RHEL, CentOS, Fedora and SUSE Linux as shown below.

Sponsored
$ sudo yum install putty
OR
$ sudo dnf install putty

Install PuTTy from Source

If you don’t use any of the above mentioned Linux distributions, or if you wish to install PuTTy from source, then here are the commands to run. You can change the download URL below as per your requirement.

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

In this article, we have learnt how to install PuTTy on different Linux distributions.

Also read:

JavaScript Convert Object to String Without Quotes
How to Highlight Text Using JavaScript
How to Check File MIME Type With JavaScript
How to Replace Line Breaks with BR Tag in JavaScript
How to Detect When User Leaves Web Page

The post How to Install PuTTy on Linux appeared first on Fedingo.

Ubuntu Server Admin

Recent Posts

Canonical Releases Ubuntu 25.04 Plucky Puffin

The latest interim release of Ubuntu introduces “devpacks” for popular frameworks like Spring, along with…

2 days ago

Ubuntu 25.04 (Plucky Puffin) Released

Ubuntu 25.04, codenamed “Plucky Puffin”, is here. This release continues Ubuntu’s proud tradition of integrating…

3 days ago

Extended Security Maintenance for Ubuntu 20.04 (Focal Fossa) begins May 29, 2025

Ubuntu released its 20.04 (Focal Fossa) release 5 years ago, on March 23, 2020. As…

3 days ago

Ubuntu 20.04 LTS End Of Life – activate ESM to keep your fleet of devices secure and operational

Focal Fossa will reach the End of Standard Support in May 2025, also known as…

4 days ago

Ubuntu MATE 25.04 Release Notes

Ubuntu MATE 25.04 is ready to soar! 🪽 Celebrating our 10th anniversary as an official…

4 days ago

Ubuntu Weekly Newsletter Issue 887

Welcome to the Ubuntu Weekly Newsletter, Issue 887 for the week of April 6 –…

6 days ago