larch command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
larch: command not found
or when using sudo you get the following error message
sudo: larch: command not found
Solutions to larch: command not found
How To Fix larch: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu larch is provided by larch package.
larch is:
Larch is a tool to copy messages from one IMAP server to another quickly and safely. It’s smart enough not to copy messages that already exist on the destination and robust enough to deal with interruptions caused by flaky connections or misbehaving servers.
Larch is particularly well-suited for copying email to, from, or between Gmail accounts.
Note that this package is currently unmaintained upstream, although it is still functional.
To fix this problem, we can install more using the command below.
sudo apt-get -y install larch
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install larch.
sudo apt -y install larch
Or if you have aptitude installed you can use the following command.
sudo aptitude install larch
Summary
In this tutorial we learn how to fix larch command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.