Install putty-tools on Ubuntu: sudo apt-get install putty-tools

Learn how to install putty-tools with the command sudo apt-get install putty-tools on Ubuntus.


 

Ads

Quick installation of putty-tools:

Step 1: Update system:

	sudo apt-get update

Step 2: Install: putty-tools

Ater updaing the OS run following command to install the packae:

	sudo apt-get install putty-tools

Package Details

Package:putty-tools
Version:0.62-6ubuntu0.1
Maintainer:Ubuntu Developers
Home page:
Description:command-line tools for SSH, SCP, and SFTP This package provides four command-line tools from the PuTTY suite that allow various kinds of secure interaction with remote systems. . Plink (PuTTY Link) connects to a remote system via SSH, Telnet, or rlogin, and either starts an interactive session or runs a batch process. It supports the usual SSH features like port forwarding, X11 forwarding, SOCKS, and compression. . PSCP (PuTTY Secure Copy) transfers files securely between systems using an SSH connection. It works with both SSH protocol 1 and protocol 2. . PSFTP (PuTTY SFTP client) transfers files securely between systems using the SSH file transfer protocol, which is specific to SSH protocol 2. In interactive mode its interface is much like the traditional Unix FTP client, although it can also operate in batch mode. . PuTTYgen generates SSH public and private key pairs in any of a number of formats, including those usable by PuTTY, OpenSSH, and ssh.com. . All these utilities can make use of PuTTY's saved sessions where appropriate.
Distro:Ubuntu 12.04 LTS
Release:
Repo/Section:universe/net

How to install putty-tools on Ubuntu 12.04 LTS?

Install putty-tools on Ubuntu: sudo apt-get install putty-tools

First of all update your system with the command:

sudo apt-get update

Ads

Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.

After downloading the latest package list with the help of above you can run the installation process.

If putty-tools is not installed on your compter then the command 'dpkg -L putty-tools' will give followin error.

deepak@deepak-VirtualBox:~$ dpkg -L putty-tools
Package `putty-tools' is not installed.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
and dpkg --contents (= dpkg-deb --contents) to list their contents.
deepak@deepak-VirtualBox:~$ 

Installing putty-tools:

After system update use the following command to install putty-tools:

sudo apt-get install putty-tools

Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.

How to uninstall/remove putty-tools from Ubuntu 12.04 LTS?

Now we will see the commands for uninstalling the putty-tools from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.

To remove the putty-tools following command is used:

sudo apt-get remove  putty-tools

Following command is used to remove the putty-tools package along with its dependencies:

sudo apt-get remove --auto-remove putty-tools

This will remove putty-tools and all its dependent packages which is no longer needed in the system.

Completely removing putty-tools with all configuration files:

Following command should be used with care as it deletes all the configuration files and data:

sudo apt-get purge putty-tools

or you can use following command also:

sudo apt-get purge --auto-remove putty-tools

Above command will remove all the configuration files and data associated with putty-tools package. You can can't recover the delete data, so, use this command with care.