Learn to Install PuTTY on Ubuntu Linux
Introduction
PuTTY is a well-known Windows terminal emulator that isn’t exclusive to Windows. It is well-liked by Linux users and is free and open source. SSH, Telnet, serial, rlogin, SFTP, SCP, and more protocols are supported. Sysadmins with experience and enthusiasts utilize it. In general, the Maker community uses it to communicate with the serial ports on their devices, but sysadmins use it as an SSH and telnet client. “psftp” is a command-line utility that PuTTY also includes. Using an SSH connection, files are safely transferred between computers using the PuTTY SFTP client.
In this article you will learn to install PuTTY on Ubuntu 14.04 and higher.
PuTTY can be installed in Ubuntu Linux by using the terminal i.e. the command line in a easiest way.
Steps to Install PuTTY on Ubuntu Linux
1. Login to your Ubuntu Desktop. In order to open GNOME terminal press Ctrl + Atl + T. If the shortcut doesn’t work, run the Terminal from the Ubuntu Dash.
2. Execute the below command in the terminal:
>> sudo apt-get update

With this command, the Ubuntu package list gets updated with latest one. In case you skip this command, Ubuntu might install older version of the softwares rather than the latest version because it only had the older list with older version of softwares. So, before installing new software or intending to upgrade the software versions, you should run this command first. This sudo prefix at the beginning of the command, informs the terminal to execute the command as root as installing and upgrading softwares is a privilege operation and should not be performed by users having limited access. Mention the user password when asked by sudo and hit Enter.
3. Use the below command to install PuTTY:
>> sudo apt-get install -y putty

4. Now PuTTY will get installed. Use “putty” as command to run it, or you can run it from the Dash.
>> putty

From the screenshot above, you can see that it offers a range of connection type to select from: Telnet, Raw, SSH, Rlogin and Serial. It also comes with command line tools for SFTP (psftp), SCP (pscp), RSA and DSA key generator (puttygen), etc. You can run them from the terminal.
In this way, you can install PuTTY on Ubuntu Linux in these simple steps.
Also Read
How to Check if your Site is Blocked by The Great Firewall of China?