csync2-compare command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
csync2-compare: command not found
or when using sudo you get the following error message
sudo: csync2-compare: command not found
Solutions to csync2-compare: command not found
How To Fix csync2-compare: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu csync2-compare is provided by csync2 package.
csync2 is:
CSYNC2 synchronizes files in a cluster using the rsync-algorithm. It maintains a database of modified files so it is able to handle deletion of files and file modification conflicts.
To fix this problem, we can install more using the command below.
sudo apt-get -y install csync2
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install csync2.
sudo apt -y install csync2
Or if you have aptitude installed you can use the following command.
sudo aptitude install csync2
Summary
In this tutorial we learn how to fix csync2-compare command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.