dbcat command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dbcat: command not found
or when using sudo you get the following error message
sudo: dbcat: command not found
Solutions to dbcat: command not found
How To Fix dbcat: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dbcat 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 dbcat command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.