cddb-tool command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cddb-tool: command not found
or when using sudo you get the following error message
sudo: cddb-tool: command not found
Solutions to cddb-tool: command not found
How To Fix cddb-tool: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cddb-tool is provided by abcde package.
abcde is:
frontend program to cdparanoia, wget, cd-discid, id3, and your favorite Ogg/Vorbis, MP3, FLAC, Ogg/Speex, M4A, Opus, WavPack, Monkey’s Audio (ape), MPP/MP+(Musepack) and/or AIFF format encoder (defaults to oggenc). Grabs an entire CD and converts each track to the specified formats and then comments or tags each file, with one command.
With abcde you can encode several formats with one single command, using a single CD read operation. It also allows you to read and encode while not on the internet, and later query a CDDB or Musicbrainz server to lookup metadata and tag your files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install abcde
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install abcde.
sudo apt -y install abcde
Or if you have aptitude installed you can use the following command.
sudo aptitude install abcde
Summary
In this tutorial we learn how to fix cddb-tool command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.