cutmp3 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cutmp3: command not found
or when using sudo you get the following error message
sudo: cutmp3: command not found
Solutions to cutmp3: command not found
How To Fix cutmp3: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cutmp3 is provided by cutmp3 package.
cutmp3 is:
cutmp3 is a small and fast command line MP3 editor. It lets you select sections of an MP3 interactively or via a timetable and save them to separate files without quality loss. It uses mpg123 for playback and works with VBR files and even with files bigger than 2GB. Other features are configurable silence seeking and ID3 tag seeking, which are useful for concatenated mp3s.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cutmp3
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cutmp3.
sudo apt -y install cutmp3
Or if you have aptitude installed you can use the following command.
sudo aptitude install cutmp3
Summary
In this tutorial we learn how to fix cutmp3 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.