PuTTY is a free and open-source cross-platform SSH and telnet shopper that even after being round for over 20 years stays one of the crucial common SSH shoppers getting used particularly on the Home windows platform.
Linux distros ship with SSH capabilities constructed into their terminal however in real-world environments, I’ve seen PuTTY getting used as an alternative of the default Linux methods extra instances than I cared to depend.
The quickest causes that come to thoughts for such situations embody:
- Familiarity: customers are extra snug utilizing an SSH shopper they received acquainted with whereas utilizing Home windows.
- Debug mode: Connection to serial pots and uncooked sockets is extra user-friendly with PuTTY.
- Comfort: PuTTY has a GUI that undeniably makes it simpler to make use of particularly by SSH and/or terminal newbies.
It’s attainable in your personal causes for wanting to make use of PuTTY on GNU/Linux are completely different. It doesn’t actually matter. Listed here are the steps to take with a view to set up PuTTY on the Linux distro of your alternative.
How you can Set up PuTTY on Linux
PuTTY is out there to put in from the default official repositories in most Linux distributions. As an illustration, you’ll be able to set up PuTTY on Ubuntu and its by-product distros by way of the universe repository.
Set up PuTTy on Ubuntu and Linux Mint
First, you’ll must allow the universe repository so as to entry its packages, replace your system to acknowledge its new entry rights, after which run the apt set up command.
$ sudo add-apt-repository universe $ sudo apt replace $ sudo apt set up putty
Launch PuTTY to see that its UI mirrors that of the home windows model. Joyful you 🙂

Set up PuTTy on Debian
Similar to for Ubuntu, PuTTY is out there for Debian and all its distros by way of aptitude (i.e. utilizing apt-get or apt) as proven.
$ sudo apt-get set up putty OR $ sudo apt-get set up putty
Set up PuTTy on Arch Linux
Arch Linux and its derivatives also can set up PuTTY from the default repositories.
$ sudo pacman -S putty
Set up PuTTy on CentOS, RHEL, Fedora, Rocky & AlmaLinux
PuTTY is out there to put in by way of the distro’s default bundle supervisor resembling yum or dnf.
$ sudo yum set up putty OR $ sudo dnf set up putty
Set up PuTTy from Supply Code in Linux
It’s attainable that you simply need to get your fingers ‘soiled‘ and construct the SSH shopper from scratch your self. You’re in luck as a result of it’s open-source and the supply code is out there to obtain putty from the official putty web site utilizing the next wget command.
$ wget https://the.earth.li/~sgtatham/putty/newest/putty-0.78.tar.gz $ tar -xvf putty-0.78.tar.gz $ cd putty-0.78/ $ ./configure $ sudo make && sudo make set up
That’s all of us! You’re now geared up with the data to put in PuTTY on any Linux distro, in any surroundings. Now discover ways to use putty with these helpful putty suggestions and tips.
Do you utilize a unique SSH or telnet shopper? Inform us about it within the feedback part beneath.