cd5 command not found

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

Introduction

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

cd5: command not found

or when using sudo you get the following error message

sudo: cd5: command not found

Solutions to cd5: command not found

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

In Ubuntu cd5 is provided by cd5 package.

cd5 is:

CD-ROM Digest is a program that checks a multi-track CD-ROM. It reports the MD5 digest and size for each track on a CD-ROM. The digest is done as the track is read, without dumping CD-ROM data on the hard drive. This tool helps users that are burning a multi-track CD-ROM to check the result.

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

sudo apt-get -y install cd5

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

You can also use apt command to install cd5.

sudo apt -y install cd5

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

sudo aptitude install cd5

Summary

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