dsh command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dsh: command not found
or when using sudo you get the following error message
sudo: dsh: command not found
Solutions to dsh: command not found
How To Fix dsh: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dsh is provided by dsh package.
dsh is:
Executes specified command on a group of computers using remote shell methods such as rsh or ssh.
dsh can parallelise job submission using several algorithms, such as using fan-out method or opening as much connections as possible, or using a window of connections at one time. It also supports “interactive mode” for interactive maintenance of remote hosts.
This tool is handy for administration of PC clusters, and multiple hosts.
http://www.netfort.gr.jp/~dancer/software/dsh.html
To fix this problem, we can install more using the command below.
sudo apt-get -y install dsh
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dsh.
sudo apt -y install dsh
Or if you have aptitude installed you can use the following command.
sudo aptitude install dsh
Summary
In this tutorial we learn how to fix dsh command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.