jmac command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
jmac: command not found
or when using sudo you get the following error message
sudo: jmac: command not found
Solutions to jmac: command not found
How To Fix jmac: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jmac is provided by libjmac-java package.
libjmac-java is:
JMAC is a Java implementation of Monkey’s Audio Compression decoder. JMAC is a Java library that decodes, converts and plays Monkey’s Audio files (.MAC, .APL, .APE) in real time. JMAC doesn’t need JMF. It runs under J2SE.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libjmac-java
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libjmac-java.
sudo apt -y install libjmac-java
Or if you have aptitude installed you can use the following command.
sudo aptitude install libjmac-java
Summary
In this tutorial we learn how to fix jmac command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.