in.rshd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
in.rshd: command not found
or when using sudo you get the following error message
sudo: in.rshd: command not found
Solutions to in.rshd: command not found
How To Fix in.rshd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu in.rshd is provided by rsh-redone-server package.
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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install rsh-redone-server
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install rsh-redone-server.
sudo apt -y install rsh-redone-server
Or if you have aptitude installed you can use the following command.
sudo aptitude install rsh-redone-server
Summary
In this tutorial we learn how to fix in.rshd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.