cdck command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cdck: command not found
or when using sudo you get the following error message
sudo: cdck: command not found
Solutions to cdck: command not found
How To Fix cdck: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cdck is provided by cdck package.
cdck is:
cdck (CD/DVD check tool) is a simple console program to verify CD/DVD quality. The known fact is that even if all files on the disc are readable, some sectors having bad timing can easily turn into unreadable ones in the future.
To get an idea about a disc cdck reads it sector by sector, keeping all reading timings and then tells you its verdict. Optionally it can write the timing table into text file usable by gnuplot(1) program, so you can draw some graphs out of it.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cdck
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cdck.
sudo apt -y install cdck
Or if you have aptitude installed you can use the following command.
sudo aptitude install cdck
Summary
In this tutorial we learn how to fix cdck command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.