mp3cd command not found

In this troubleshooting guide we learn how to fix mp3cd command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

mp3cd: command not found

or when using sudo you get the following error message

sudo: mp3cd: command not found

Solutions to mp3cd: command not found

How To Fix mp3cd: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu mp3cd is provided by mp3cd package.

mp3cd is:

This script burns a playlist (.m3u, XMLPlaylist or command line list) of MP3s, Oggs, and/or WAVs to an audio CD. The “.m3u” format is really nothing more than a list of fully qualified filenames. The script handles making the WAVs sane by resampling if needed, and normalizing the volume across all tracks. Reading tags and writing CD-TEXT is supported.

If a failure happens, earlier stages can be skipped with the ‘-s’ flag. The file “tool-output.txt” in the temp directory can be examined to see what went wrong during the stage. Some things are time-consuming (like writing the WAVs from MP3s) and if the CD burn failed, it’s much nicer not to have to start over from scratch. When doing this, you will not need the m3u file any more, since the files have already been built. See the list of stages using ‘-h’.

This script implements the suggested methods outlined in the Linux MP3 CD Burning mini-HOWTO: http://tldp.org/HOWTO/MP3-CD-Burning/

To fix this problem, we can install more using the command below.

sudo apt-get -y install mp3cd

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install mp3cd.

sudo apt -y install mp3cd

Or if you have aptitude installed you can use the following command.

sudo aptitude install mp3cd

Summary

In this tutorial we learn how to fix mp3cd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.