cdw command not found

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

Introduction

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

cdw: command not found

or when using sudo you get the following error message

sudo: cdw: command not found

Solutions to cdw: command not found

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

In Ubuntu cdw is provided by cdw package.

cdw is:

Ncurses-based frontend for wodim and genisoimage. It can handle audio and data CD burning, through a CD image or directly from the files.

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

sudo apt-get -y install cdw

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

You can also use apt command to install cdw.

sudo apt -y install cdw

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

sudo aptitude install cdw

Summary

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