How To Install rsh-redone-server on Debian 9

In this tutorial we learn how to install rsh-redone-server on Debian 9. rsh-redone-server is Reimplementation of rshd and rlogind

Introduction

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

What is rsh-redone-server

rsh-redone-server 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 rshd and rlogind.

There are three methods to install rsh-redone-server 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-server 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-server using apt-get by running the following command:

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

Install rsh-redone-server Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install rsh-redone-server

Install rsh-redone-server 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-server using aptitude by running the following command:

sudo aptitude -y install rsh-redone-server

How To Uninstall rsh-redone-server on Debian 9

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

sudo apt-get remove rsh-redone-server

Uninstall rsh-redone-server And Its Dependencies

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

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

Remove rsh-redone-server Configurations and Data

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

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

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

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

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

Dependencies

rsh-redone-server have the following dependencies:

References

Summary

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