mhc command not found

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

Introduction

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

mhc: command not found

or when using sudo you get the following error message

sudo: mhc: command not found

Solutions to mhc: command not found

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

In Ubuntu mhc is provided by mhc-utils package.

mhc-utils is:

MHC (Message Harmonized Calendaring system) is a personal schedule management system, that is designed to help those who receive most appointments via email.

MHC has the following features:

  • You can easily import schedule articles from existing buffers.
  • Simple data structure; schedule articles are stored in the same form of MH that allows you to manipulate stored data in many ways.
  • Powerful but simple expression of appointments.

This package provides the mhc command and Ruby libraries. To use MHC on Emacs, install the mhc package.

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

sudo apt-get -y install mhc-utils

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

You can also use apt command to install mhc-utils.

sudo apt -y install mhc-utils

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

sudo aptitude install mhc-utils

Summary

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