cdde command not found

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

Introduction

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

cdde: command not found

or when using sudo you get the following error message

sudo: cdde: command not found

Solutions to cdde: command not found

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

In Ubuntu cdde is provided by cdde package.

cdde is:

CDDE is a program that detects when a CD/DVD-ROM drive has a disc inserted. When it finds a disc inserted in the drive it will attempt to determine the type of the disc, and execute a specified command. This means a DVD can be inserted and your favorite DVD software will start, or a data CD can be automatically mounted, etc. The commands are defined in a configuration file that has simple XML syntax.

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

sudo apt-get -y install cdde

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

You can also use apt command to install cdde.

sudo apt -y install cdde

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

sudo aptitude install cdde

Summary

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