inoticoming command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
inoticoming: command not found
or when using sudo you get the following error message
sudo: inoticoming: command not found
Solutions to inoticoming: command not found
How To Fix inoticoming: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu inoticoming is provided by inoticoming package.
inoticoming is:
inoticoming is a daemon to watch a directory with Linux’s inotify framework and trigger actions once files with specific names are placed in there.
For example it can be used to wait for .changes files uploaded into a directory and call reprepro to put them into your repository.
To fix this problem, we can install more using the command below.
sudo apt-get -y install inoticoming
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install inoticoming.
sudo apt -y install inoticoming
Or if you have aptitude installed you can use the following command.
sudo aptitude install inoticoming
Summary
In this tutorial we learn how to fix inoticoming command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.