direvent command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
direvent: command not found
or when using sudo you get the following error message
sudo: direvent: command not found
Solutions to direvent: command not found
How To Fix direvent: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu direvent is provided by direvent package.
direvent is:
For each event that occurs in a set of pre-configured directories, the program calls an external program associated with it, supplying it with the information about the event and the location within the file system where it occurred. This may be helpful, for example, to track changes in the important configuration files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install direvent
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install direvent.
sudo apt -y install direvent
Or if you have aptitude installed you can use the following command.
sudo aptitude install direvent
Summary
In this tutorial we learn how to fix direvent command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.