wav2cdr command not found

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

Introduction

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

wav2cdr: command not found

or when using sudo you get the following error message

sudo: wav2cdr: command not found

Solutions to wav2cdr: command not found

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

In Ubuntu wav2cdr is provided by wav2cdr package.

wav2cdr is:

This program converts wav sound files into a format suitable for CD-ROMs, and can perform some editing functions like cutting or volume change. It is rather rudimentary, the wav file must have the same sampling parameters as CD audio. Runs both on big and little endian machines.

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

sudo apt-get -y install wav2cdr

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

You can also use apt command to install wav2cdr.

sudo apt -y install wav2cdr

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

sudo aptitude install wav2cdr

Summary

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