cue2toc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cue2toc: command not found
or when using sudo you get the following error message
sudo: cue2toc: command not found
Solutions to cue2toc: command not found
How To Fix cue2toc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cue2toc is provided by cue2toc package.
cue2toc is:
CUE files are text files describing the layout of a CD-ROM and typically carry the extension “.cue”. cdrdao and cdrecord, the two CD recording programs for Linux systems, cannot read these files. This program converts CUE files into the TOC format that cdrdao can understand.
It also features automatic data format conversion (e.g., MP3 to WAV) before burning; the exact action taken is determined by the file extensions and the user’s configuration.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cue2toc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cue2toc.
sudo apt -y install cue2toc
Or if you have aptitude installed you can use the following command.
sudo aptitude install cue2toc
Summary
In this tutorial we learn how to fix cue2toc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.