cdtool2cddb command not found

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

Introduction

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

cdtool2cddb: command not found

or when using sudo you get the following error message

sudo: cdtool2cddb: command not found

Solutions to cdtool2cddb: command not found

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

In Ubuntu cdtool2cddb is provided by cdtool package.

cdtool is:

cdtool contains cdplay, cdeject, cdstop, cdpause, and several other programs for playing audio CDs and controlling a CD-ROM drive from the command line and in a quick and scriptable way.

cdown reads track info and queries a CDDB database for info on the current CD. cdctrl is a command line utility for controlling a CD-ROM drive interactively and from scripts. cdir keeps track of the contents of different CDs using a workman-compatible database.

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

sudo apt-get -y install cdtool

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

You can also use apt command to install cdtool.

sudo apt -y install cdtool

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

sudo aptitude install cdtool

Summary

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