seq24 command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
seq24: command not found
or when using sudo you get the following error message
sudo: seq24: command not found
Solutions to seq24: command not found
How To Fix seq24: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu seq24 is provided by seq24 package.
seq24 is:
Seq24 was created to provide a very simple interface for editing and playing midi ’loops’. It is a very minimal sequencer that excludes the bloated features of the large software sequencers and includes a small subset that proved to be useful for live performances.
To fix this problem, we can install more using the command below.
sudo apt-get -y install seq24
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install seq24.
sudo apt -y install seq24
Or if you have aptitude installed you can use the following command.
sudo aptitude install seq24
Summary
In this tutorial we learn how to fix seq24 command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.