mmake command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mmake: command not found
or when using sudo you get the following error message
sudo: mmake: command not found
Solutions to mmake: command not found
How To Fix mmake: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mmake is provided by mmake package.
mmake is:
mmake will generate a master Makefile for your Java programs. This generated Makefile fully understands the subdirectories that are required if your program consists of multiple packages. mmake also automatically generates dependencies, and can use the C preprocessor for Java programs and generate javadoc documentation. mmake defaults to using Sun’s javac from the jdk but can easily use guavac or a different GPL alternative as well.
To fix this problem, we can install more using the command below.
sudo apt-get -y install mmake
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install mmake.
sudo apt -y install mmake
Or if you have aptitude installed you can use the following command.
sudo aptitude install mmake
Summary
In this tutorial we learn how to fix mmake command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.