mpath command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mpath: command not found
or when using sudo you get the following error message
sudo: mpath: command not found
Solutions to mpath: command not found
How To Fix mpath: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mpath is provided by libmodule-path-perl package.
libmodule-path-perl is:
Module::Path provides a single function, module_path(), which takes a module name and finds the first directory in the @INC path where the module is installed locally. It returns the full path to that file, resolving any symlinks.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libmodule-path-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libmodule-path-perl.
sudo apt -y install libmodule-path-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libmodule-path-perl
Summary
In this tutorial we learn how to fix mpath command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.