mikmod command not found

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

Introduction

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

mikmod: command not found

or when using sudo you get the following error message

sudo: mikmod: command not found

Solutions to mikmod: command not found

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

In Ubuntu mikmod is provided by mikmod package.

mikmod is:

Mikmod is a very portable tracked music player which supports a wide variety of module formats including compressed sample Impulse Tracker modules. It also supports many archive formats, as well as on the fly decompression.

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

sudo apt-get -y install mikmod

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

You can also use apt command to install mikmod.

sudo apt -y install mikmod

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

sudo aptitude install mikmod

Summary

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