How To Install rsh-redone-client on Debian 9

In this tutorial we learn how to install rsh-redone-client on Debian 9. rsh-redone-client is Reimplementation of rsh and rlogin

Introduction

In this tutorial we learn how to install rsh-redone-client on Debian 9.

What is rsh-redone-client

rsh-redone-client is:

Rsh-redone is a reimplementation of the remote shell clients and servers. It is written from the ground up to avoid the bugs found in the standard clients and servers. It also fully supports IPv6.

This package provides rsh and rlogin.

There are three methods to install rsh-redone-client on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install rsh-redone-client Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install rsh-redone-client using apt-get by running the following command:

sudo apt-get -y install rsh-redone-client

Install rsh-redone-client Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install rsh-redone-client using apt by running the following command:

sudo apt -y install rsh-redone-client

Install rsh-redone-client Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install rsh-redone-client using aptitude by running the following command:

sudo aptitude -y install rsh-redone-client

How To Uninstall rsh-redone-client on Debian 9

To uninstall only the rsh-redone-client package we can use the following command:

sudo apt-get remove rsh-redone-client

Uninstall rsh-redone-client And Its Dependencies

To uninstall rsh-redone-client and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove rsh-redone-client

Remove rsh-redone-client Configurations and Data

To remove rsh-redone-client configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge rsh-redone-client

Remove rsh-redone-client configuration, data, and all of its dependencies

We can use the following command to remove rsh-redone-client configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge rsh-redone-client

Dependencies

rsh-redone-client have the following dependencies:

References

Summary

In this tutorial we learn how to install rsh-redone-client package on Debian 9 using different package management tools: apt, apt-get and aptitude.