How to install Putty SSH Client on Ubuntu 20.04 LTS

Putty is the most widely used SSH and telnet client for Microsoft Windows operating systems. It is used to remotely access and configure devices such as servers, switches and routers. Putty, a free and open source utility, is also very popular among Linux users.

Another reason for Putty's popularity is its included features like session management, proxy session, session logging, and language settings. It also supports various network protocols including SSH, telnet, SCP, rlogin, etc.

Install Putty on Ubuntu

Follow the steps below to install Putty on Ubuntu:

Step 1: Activate the Universe repository

To install Putty, you need to ensure that the Universe repository is enabled on your Ubuntu system. If it is not already enabled, you can activate it by using the following command in Terminal:

$ sudo add-apt-repository universe

When prompted for a password, enter the sudo password.

Step 2: Install Putty

After activating the Universe repository, you can now install Putty on your system. Enter the following command in Terminal to do so:

$ sudo apt install putty

When prompted for a password, enter the sudo password.

When you run the above command, the system will prompt for confirmation that you want to continue with the installation or not. Press y to continue, after that the Putty installation will be started on the system.

Once done, you can verify the installation via the following command in Terminal:

$ putty --version

You should see a result similar to the following:

How to install Putty SSH Client on Ubuntu 20.04 LTS Picture 1

Step 3: Launch Putty

Once installed, you're ready to launch and use Putty on your Ubuntu system. You can launch Putty through the command line terminal application or via the GUI.

To launch Putty through the command line, use the following command in Terminal:

$ putty

To launch Putty via GUI, press the super key on your keyboard and type putty in the search bar. When the Putty icon appears, click on it to launch the tool.

Putty for Linux looks like this. It looks like the Windows version but with Ubuntu theme and colors.

How to install Putty SSH Client on Ubuntu 20.04 LTS Picture 2

Now, to connect to a remote host, just enter the IP address or host name and enter the port number. Then click Open to initiate the connection.

When connecting the remote system for the first time, you will see the following PuTTY Security Alert dialog box . Click the Accept button to connect to the remote server.

Now, the following Terminal window will appear prompting you to enter the username and password for the remote system. Enter the username and password, press Enter , then you will log into the remote system.

Eliminate Putty

In case you want to remove Putty from your system, you can do it via the following command in Terminal:

$ sudo apt remove putty

After running the above command, the system may ask for confirmation that you want to continue the process. Press y to continue, then the Putty application will be removed from the system.

3.8 ★ | 25 Vote

May be interested

  • How to fix the problem of being unable to enter Terminal in LinuxPhoto of How to fix the problem of being unable to enter Terminal in Linux
    nothing is perfect and sometimes, even terminal can stop responding or ignore what you type. if your terminal crashes and you can't enter it, here are some of the most common causes and solutions for them.
  • How to monitor, clean and optimize Linux with StacerPhoto of How to monitor, clean and optimize Linux with Stacer
    looking for ways to optimize your linux system and make it run faster? there are tons of ways and tools for you to do this, and stacer includes everything you need to monitor, clean, and optimize your linux installation.
  • How to hide desktop icons on Ubuntu 20.04Photo of How to hide desktop icons on Ubuntu 20.04
    if you find hiding the top toolbar and side panel isn't enough and want everything to disappear from your ubuntu desktop, then you may want to get rid of those annoying icons from its surface.
  • How to use ZFS Snapshots in Ubuntu 20.04Photo of How to use ZFS Snapshots in Ubuntu 20.04
    ubuntu support for zfs is nothing new in version 20.04 lts. what's new is how easy it is to use one of the most important zfs features - snapshots.
  • How to install Google Cloud SDK on Ubuntu 20.04Photo of How to install Google Cloud SDK on Ubuntu 20.04
    the google cloud sdk provides users with the ability to access google cloud via terminal. this is a development toolkit that comes with many commands to help manage resources in google cloud environment.
  • How to verify the checksum in LinuxPhoto of How to verify the checksum in Linux
    this article will show you how to check and verify checksum in linux. while this can be easily done in terminal, you'll learn here how gtkhash graphical engine checksum can be checked and verified incredibly simple.