dicp command not found

In this troubleshooting guide we learn how to fix dicp command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

dicp: command not found

or when using sudo you get the following error message

sudo: dicp: command not found

Solutions to dicp: command not found

How To Fix dicp: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dicp is provided by dish package.

dish is:

Dish executes commands simultaneously on several systems via ‘ssh’, ‘rsh’, ’telnet’, ‘mysql’, or any user-defined command-line connection client. It makes easy the distribution of files by ‘scp’ and ‘rcp’, but also a remote password change or operations requiring authentication by multiple passwords. Dish can be used as a flexible tool for managing large number of various types of hosts such as (clustered) servers, switches, databases, etc.

To fix this problem, we can install more using the command below.

sudo apt-get -y install dish

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install dish.

sudo apt -y install dish

Or if you have aptitude installed you can use the following command.

sudo aptitude install dish

Summary

In this tutorial we learn how to fix dicp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.