metamonger command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
metamonger: command not found
or when using sudo you get the following error message
sudo: metamonger: command not found
Solutions to metamonger: command not found
How To Fix metamonger: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu metamonger is provided by metamonger package.
metamonger is:
metamonger allows you to save, diff, and restore filesystem metadata like mtime, atime, uid, gid, etc. The storage backend is line-wise JSON; this makes it easy to commit, track, and merge the data with a VCS like Git as well as edit the stored data by hand.
To fix this problem, we can install more using the command below.
sudo apt-get -y install metamonger
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install metamonger.
sudo apt -y install metamonger
Or if you have aptitude installed you can use the following command.
sudo aptitude install metamonger
Summary
In this tutorial we learn how to fix metamonger command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.