metche command not found

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

Introduction

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

metche: command not found

or when using sudo you get the following error message

sudo: metche: command not found

Solutions to metche: command not found

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

In Ubuntu metche is provided by metche package.

metche is:

metche monitors changes made to a “system state” composed of: - a “watched” directory (typically: /etc) - one or more user maintained changelog files (e.g. /root/Changelog) - the state of Debian packages and versions (using apt-show-versions) by periodically: - saving backups of the corresponding files - emailing the changes in the system state to your administrators' mailing list

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

sudo apt-get -y install metche

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

You can also use apt command to install metche.

sudo apt -y install metche

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

sudo aptitude install metche

Summary

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