exmh command not found

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

Introduction

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

exmh: command not found

or when using sudo you get the following error message

sudo: exmh: command not found

Solutions to exmh: command not found

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

In Ubuntu exmh is provided by exmh package.

exmh is:

Exmh uses the regular MH programs to manipulate your mail folders and messages. This means it is compatible with command-line use of MH programs, and its actions should be familiar if you are an experienced MH user. If you are a new MH user, then the details of running MH programs are hidden behind the graphical interface.

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

sudo apt-get -y install exmh

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

You can also use apt command to install exmh.

sudo apt -y install exmh

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

sudo aptitude install exmh

Summary

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