pj_equals command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pj_equals: command not found
or when using sudo you get the following error message
sudo: pj_equals: command not found
Solutions to pj_equals: command not found
How To Fix pj_equals: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pj_equals is provided by pajeng package.
pajeng is:
PajeNG (Paje Next Generation) is a re-implementation (in C++) and direct heir of the well-known Paje visualization tool for the analysis of execution traces (in the Paje File Format) through trace visualization (space/time view). Auxiliary tools are also available to dump to CSV and display gantt charts out of Paje trace files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pajeng
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pajeng.
sudo apt -y install pajeng
Or if you have aptitude installed you can use the following command.
sudo aptitude install pajeng
Summary
In this tutorial we learn how to fix pj_equals command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.