ipwatchd-script command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ipwatchd-script: command not found
or when using sudo you get the following error message
sudo: ipwatchd-script: command not found
Solutions to ipwatchd-script: command not found
How To Fix ipwatchd-script: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ipwatchd-script is provided by ipwatchd package.
ipwatchd is:
IPwatchD is a simple daemon that analyses all incoming ARP packets in order to detect IP conflicts on Linux. It can be configured to listen on one or more interfaces (alias interfaces are also supported) in active or passive mode. In active mode IPwatchD protects your host before IP takeover by answering Gratuitous ARP requests received from conflicting system. In passive mode it just records information about conflict through standard syslog interface.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ipwatchd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ipwatchd.
sudo apt -y install ipwatchd
Or if you have aptitude installed you can use the following command.
sudo aptitude install ipwatchd
Summary
In this tutorial we learn how to fix ipwatchd-script command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.