cddbget command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cddbget: command not found
or when using sudo you get the following error message
sudo: cddbget: command not found
Solutions to cddbget: command not found
How To Fix cddbget: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cddbget is provided by libcddb-get-perl package.
libcddb-get-perl is:
This module/script gets the CDDB info for an audio cd. You need a cdrom drive and an active internet connection in order to access the CDDB information.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libcddb-get-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libcddb-get-perl.
sudo apt -y install libcddb-get-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libcddb-get-perl
Summary
In this tutorial we learn how to fix cddbget command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.