How To Install xmp on CentOS 7
Introduction
In this tutorial we learn how to install xmp
on CentOS 7.
What is xmp
This is the Extended Module Player, a portable module player that plays over 90 mainstream and obscure module formats, including Protracker MOD, Fasttracker II XM, Scream Tracker 3 S3M and Impulse Tracker IT files.
We can use yum
or dnf
to install xmp
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install xmp.
Install xmp on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install xmp
using yum
by running the following command:
sudo yum -y install xmp
Install xmp on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
After updating yum database, We can install xmp
using dnf
by running the following command:
sudo dnf -y install xmp
How To Uninstall xmp on CentOS 7
To uninstall only the xmp
package we can use the following command:
sudo dnf remove xmp
References
Summary
In this tutorial we learn how to install xmp
on CentOS 7 using yum
and dnf
.