clsync command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
clsync: command not found
or when using sudo you get the following error message
sudo: clsync: command not found
Solutions to clsync: command not found
How To Fix clsync: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu clsync is provided by clsync package.
clsync is:
Clsync recursively watches for source directory and executes external program to sync the changes. Clsync is adapted to use together with rsync. This utility is much more lightweight than competitors and supports such features as separate queue for big files, regex file filter, multi-threading.
To fix this problem, we can install more using the command below.
sudo apt-get -y install clsync
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install clsync.
sudo apt -y install clsync
Or if you have aptitude installed you can use the following command.
sudo aptitude install clsync
Summary
In this tutorial we learn how to fix clsync command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.