cdparanoia command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cdparanoia: command not found
or when using sudo you get the following error message
sudo: cdparanoia: command not found
Solutions to cdparanoia: command not found
How To Fix cdparanoia: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cdparanoia is provided by cdparanoia package.
cdparanoia is:
An audio extraction tool for sampling CDs. Unlike similar programs such as cdda2wav, cdparanoia goes to great lengths to try to extract the audio information without any artifacts such as jitter.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cdparanoia
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cdparanoia.
sudo apt -y install cdparanoia
Or if you have aptitude installed you can use the following command.
sudo aptitude install cdparanoia
Summary
In this tutorial we learn how to fix cdparanoia command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.