message-pass command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
message-pass: command not found
or when using sudo you get the following error message
sudo: message-pass: command not found
Solutions to message-pass: command not found
How To Fix message-pass: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu message-pass is provided by libmessage-passing-perl package.
libmessage-passing-perl is:
Message::Passing is a library for building high performance, loosely coupled and reliable/reseliant applications, structured as small services which communicate over the network by passing messages.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libmessage-passing-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libmessage-passing-perl.
sudo apt -y install libmessage-passing-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libmessage-passing-perl
Summary
In this tutorial we learn how to fix message-pass command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.