chaplin command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
chaplin: command not found
or when using sudo you get the following error message
sudo: chaplin: command not found
Solutions to chaplin: command not found
How To Fix chaplin: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu chaplin is provided by chaplin package.
chaplin is:
The tool parses a DVD disc or image and extracts the exact duration for each chapter of a given title. Then the total list of chapters is split into a user-selectable number of subsets. Each subset should have approximately the same duration.
http://www.lallafa.de/bp/chaplin.html
To fix this problem, we can install more using the command below.
sudo apt-get -y install chaplin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install chaplin.
sudo apt -y install chaplin
Or if you have aptitude installed you can use the following command.
sudo aptitude install chaplin
Summary
In this tutorial we learn how to fix chaplin command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.