sndfile-mix-to-mono command not found

In this troubleshooting guide we learn how to fix sndfile-mix-to-mono command not found error message

Introduction

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

sndfile-mix-to-mono: command not found

or when using sudo you get the following error message

sudo: sndfile-mix-to-mono: command not found

Solutions to sndfile-mix-to-mono: command not found

How To Fix sndfile-mix-to-mono: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu sndfile-mix-to-mono is provided by sndfile-tools package.

sndfile-tools is:

sndfile-tools is a collection of programs which use libsndfile and other libraries to do useful things like generate spectrograms using libfftw and libcairo and play sound via the JACK Audio Connection Kit daemon.

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

sudo apt-get -y install sndfile-tools

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

You can also use apt command to install sndfile-tools.

sudo apt -y install sndfile-tools

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

sudo aptitude install sndfile-tools

Summary

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