muchsync command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
muchsync: command not found
or when using sudo you get the following error message
sudo: muchsync: command not found
Solutions to muchsync: command not found
How To Fix muchsync: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu muchsync is provided by muchsync package.
muchsync is:
Muchsync brings notmuch to all of your computers by synchronizing your mail messages and notmuch tags across machines. The protocol is heavily pipelined to work efficiently over high-latency networks such as mobile broadband.
Muchsync supports arbitrary pairwise synchronization among replicas. A version-vector-based algorithm allows it to exchange only the minimum information necessary to bring replicas up to date regardless of which pairs have previously synchronized.
To fix this problem, we can install more using the command below.
sudo apt-get -y install muchsync
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install muchsync.
sudo apt -y install muchsync
Or if you have aptitude installed you can use the following command.
sudo aptitude install muchsync
Summary
In this tutorial we learn how to fix muchsync command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.