libcdaudio-config command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
libcdaudio-config: command not found
or when using sudo you get the following error message
sudo: libcdaudio-config: command not found
Solutions to libcdaudio-config: command not found
How To Fix libcdaudio-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu libcdaudio-config is provided by libcdaudio-dev package.
libcdaudio-dev is:
This library provides functions for controlling an audio CD: starting, stopping, ejecting, etc. It also provides an interface to the CDDB and CD Index servers.
This package contains the development files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libcdaudio-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libcdaudio-dev.
sudo apt -y install libcdaudio-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libcdaudio-dev
Summary
In this tutorial we learn how to fix libcdaudio-config command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.