music command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
music: command not found
or when using sudo you get the following error message
sudo: music: command not found
Solutions to music: command not found
How To Fix music: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu music is provided by music-bin package.
music-bin is:
MUSIC allows spike events and continuous time series to be communicated between parallel applications within the same MPI job in a cluster computer. Typical usage cases are connecting models developed for different simulators and connecting a parallel simulator to a post-processing tool.
This package contains the MUSIC launch utility.
To fix this problem, we can install more using the command below.
sudo apt-get -y install music-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install music-bin.
sudo apt -y install music-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install music-bin
Summary
In this tutorial we learn how to fix music command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.