xmp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xmp: command not found
or when using sudo you get the following error message
sudo: xmp: command not found
Solutions to xmp: command not found
How To Fix xmp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xmp is provided by xmp package.
xmp is:
xmp is a multi-format module player for UNIX. In machines with GUS or AWE cards xmp takes advantage of the OSS sequencer to play modules with virtually no system load. Using software mixing, xmp plays at sampling rates up to 48 kHz in mono or stereo, 8 or 16 bits, signed or unsigned, little or big endian samples with 32 bit linear interpolation. xmp currently supports more than 40 module formats.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xmp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xmp.
sudo apt -y install xmp
Or if you have aptitude installed you can use the following command.
sudo aptitude install xmp
Summary
In this tutorial we learn how to fix xmp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.