mco command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mco: command not found
or when using sudo you get the following error message
sudo: mco: command not found
Solutions to mco: command not found
How To Fix mco: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mco is provided by mcollective-client package.
mcollective-client is:
The Marionette Collective is a framework for building server orchestration and parallel job execution systems.
This package provides the MCollective client utility:
- mco
To fix this problem, we can install more using the command below.
sudo apt-get -y install mcollective-client
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mcollective-client.
sudo apt -y install mcollective-client
Or if you have aptitude installed you can use the following command.
sudo aptitude install mcollective-client
Summary
In this tutorial we learn how to fix mco command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.