mp3burn command not found

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

Introduction

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

mp3burn: command not found

or when using sudo you get the following error message

sudo: mp3burn: command not found

Solutions to mp3burn: command not found

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

In Ubuntu mp3burn is provided by mp3burn package.

mp3burn is:

mp3burn is a Perl script that allows you to burn audio CDs composed of MP3, Ogg Vorbis, or FLAC tracks without an intermediate file conversion to .cdr or .wav. The .mp3/.ogg/.flac files are converted using a decoder, but are written to FIFOs so they don’t consume filesystem space during the burn.

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

sudo apt-get -y install mp3burn

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

You can also use apt command to install mp3burn.

sudo apt -y install mp3burn

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

sudo aptitude install mp3burn

Summary

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