Installing PuTTY on Ubuntu: A step by step guide

Introduction:

Prerequisites

  • A system running Ubuntu (20.04/22.04 or other versions)
  • A user account with sudo privileges
  • Internet access to download packages

Step-by-Step Installation Guide

To install PuTTY on Ubuntu, you can use the terminal. Here are steps to follow.

  1. Open the terminal (Ctrl + Alt + T).
  2. enable the Universe repository on your system by running:

Step 1: Update System Packages

sudo apt update && sudo apt upgrade -y
Installing PuTTY on Ubuntu

Step 2: Update Universe Repository

  sudo add-apt-repository universe
Installing PuTTY on Ubuntu

Step 3: Install PuTTY

sudo apt install putty -y
Installing PuTTY on Ubuntu

Step 4: Verify the Installation

putty --version

Step 4: Launch PuTTY

putty
Installing PuTTY on Ubuntu- verify

Configuring PuTTY for SSH Access

  • Open PuTTY.
  • In the “Host Name (or IP address)” field, enter the remote server’s IP or domain.
  • Set the “Port” to 22 (default for SSH).
  • Select “SSH” under “Connection Type.”
  • Click “Open” to initiate the connection.

Uninstalling PuTTY

sudo apt remove putty -y
sudo apt autoremove -y

Read Related Topics:

PuTTY terminal not working on Ubuntu 22.04 & Linux after installation

FAQs

1. Can I use PuTTY on Ubuntu without installing it?

2. What are the alternatives to PuTTY on Ubuntu?

Some popular alternatives include OpenSSH, Termius, and MobaXterm.

3. How do I connect to a remote server using PuTTY?

Enter the remote server’s IP address, choose SSH as the connection type, and click “Open.”

4. Does PuTTY support key-based authentication on Ubuntu?

Yes, PuTTY supports key-based authentication. Use PuTTYgen to generate keys and configure SSH access accordingly.

Conclusion:

Installing PuTTY on Ubuntu is a very simple process that can be done in a few simple steps. By updating the package repository, installing PuTTY using the package manager, and optionally installing additional PuTTY tools. After installation completed we can enjoy lot of features of Putty over Ubuntu and other Linux Distros as well.

Previous Post
Next Post

Leave a Reply

Your email address will not be published. Required fields are marked *