cueconvert command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cueconvert: command not found
or when using sudo you get the following error message
sudo: cueconvert: command not found
Solutions to cueconvert: command not found
How To Fix cueconvert: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cueconvert is provided by cuetools package.
cuetools is:
cuetools is a set of programs that are useful for manipulating CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC files are a way to represent the layout of a data or audio CD in a machine-readable ASCII format. The package includes these utilities:
- cueconvert: convert between CUE and TOC formats
- cuebreakpoints: print the breakpoints from a CUE or TOC file
- cueprint: print disc and track information for a CUE or TOC file
- cuetag: tag files based on CUE/TOC file information
Probably the most popular use is to split a large audio file into many small files according to a CUE or TOC, for example:
cuebreakpoints disc.cue | shnsplit disc.wav
To fix this problem, we can install more using the command below.
sudo apt-get -y install cuetools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cuetools.
sudo apt -y install cuetools
Or if you have aptitude installed you can use the following command.
sudo aptitude install cuetools
Summary
In this tutorial we learn how to fix cueconvert command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.