evqueue command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
evqueue: command not found
or when using sudo you get the following error message
sudo: evqueue: command not found
Solutions to evqueue: command not found
How To Fix evqueue: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu evqueue is provided by evqueue-core package.
evqueue-core is:
evQueue is a fast event driven scheduler and queueing engine.
It provides both simple task execution and complex task chaining (workflow) using an easy to use drag & drop web interface. Workflow description includes output linking to input, conditions, loops… Queues management provides an easy way for task parallelization and resource control.
The network API provides an easy way, XML based, for synchronous or asynchronous workflow launching and control, allowing tasks to be launched from external applications or web pages. You can thus execute heavy tasks on a remote (dedicated) machine to save resources on your web frontends while providing live reporing of the treatment to you users.
To fix this problem, we can install more using the command below.
sudo apt-get -y install evqueue-core
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install evqueue-core.
sudo apt -y install evqueue-core
Or if you have aptitude installed you can use the following command.
sudo aptitude install evqueue-core
Summary
In this tutorial we learn how to fix evqueue command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.