dbin command not found

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

Introduction

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

dbin: command not found

or when using sudo you get the following error message

sudo: dbin: command not found

Solutions to dbin: command not found

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

In Ubuntu dbin is provided by dbmix package.

dbmix is:

The DBMix software collection mimicks a mixing desk as used by disc jockeys. Using only a single sound card, it allows one to mix audio streams from a variety of sources, cross-fade between them, adjust the pitches, or punch in short effects. Optionally, a second sound card (or output channel) can be used to cue in songs.

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

sudo apt-get -y install dbmix

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

You can also use apt command to install dbmix.

sudo apt -y install dbmix

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

sudo aptitude install dbmix

Summary

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