How to install PuTTY on Linux

PuTTY is a free open source cross-platform SSH and telnet client, even with more than 20 years, is still one of the most popular SSH client, especially on the Windows platform.

Linux distributions come with built-in SSH functionality in their terminals, but in the real world, I see PuTTY is more widely used Linux system, rather than the default.

Possible reasons for this include:

  • Familiarity: user when using the familiar Windows easier to use SSH client.
  • Convenience: PuTTY's GUI undoubtedly make it easier to use, especially SSH and / or terminal novice.
  • Debug mode: debug connection with the original socket and the serial port more friendly.

Perhaps there are other reasons that you may want to use PuTTY differ in GNU / Linux. It's ok. The following are the steps to install PuTTY on a Linux distribution of your choice.

How to install PuTTY on Linux

PuTTy installed on Ubuntu

First, you must enable the Universe repository, so that you can access their package update system to identify its new access rights, and then run the install command.

How to install PuTTY on Linux

How to install PuTTY on Linux

Start PuTTY to see its UI and Windows UI versions of the same. Happy now :-)

How to install PuTTY on Linux

How to install PuTTY on Linux

PuTTy installed on Debian

As with Ubuntu, PuTTY by aptitude (ie, using the apt-get) for Debian and all its release.

sudo apt-get install putty

PuTTy installed on Arch Linux

Arch Linux and its derived version can also be installed PuTTY from the default repository.

sudo pacman -S putty

PuTTY can be installed by the release of default package manager.

$ sudo yum install putty
或者
$ sudo dnf install putty

Installation from Linux source PuTTy

You may want to personally get myself rebuild SSH client. Luckily, because it is open source, the source code can be in here for free.

$ tar -xvf putty-0.73.tar.gz
$ cd putty-0.73/
$ ./configure
$ sudo make && sudo make install

Right here, guys! Now that you already have knowledge of PuTTY installed on any Linux distribution in any environment.

Do you use other SSH or telnet client? Tell us in the comments section below.

Guess you like

Origin www.linuxidc.com/Linux/2020-02/162370.htm