midicat command not found

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

Introduction

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

midicat: command not found

or when using sudo you get the following error message

sudo: midicat: command not found

Solutions to midicat: command not found

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

In Ubuntu midicat is provided by sndio-tools package.

sndio-tools is:

Sndio is a small, simple audio and MIDI framework, developed by the OpenBSD project. It provides a lightweight audio and MIDI server and a well-documented userspace API to access the server or audio hardware in a uniform way. Sndio is designed to work well for both desktop and professional music applications, and supports features found in more complex sound systems such as per-application volume control, software mixing, and network transparency.

This package contains command-line tools useful in conjunction with a local or remote sndio server.

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

sudo apt-get -y install sndio-tools

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

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

sudo apt -y install sndio-tools

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

sudo aptitude install sndio-tools

Summary

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