How To Install qmmp on CentOS 8
Introduction
In this tutorial we learn how to install qmmp on CentOS 8.
What is qmmp
This program is an audio-player, written with help of Qt library. The user interface is similar to winamp or xmms. Main opportunities * Winamp and xmms skins support * plugins support * MPEG1 layer 2/3 support * Ogg Vorbis support * native FLAC support * WavePack support * ModPlug support * PCM WAVE support * CD Audio support * CUE sheet support * ALSA sound output * JACK sound output * OSS sound output * PulseAudio output * Last.fm/Libre.fm scrobbler * D-Bus support * Spectrum Analyzer * projectM visualization * sample rate conversion * bs2b dsp effect * streaming support * removable device detection * MPRIS support * global hotkey support * lyrics support
We can use yum or dnf to install qmmp on CentOS 8. In this tutorial we discuss both methods but you only need to choose one of method to install qmmp.
Install qmmp on CentOS 8 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install qmmp using yum by running the following command:
sudo yum -y install qmmp
Install qmmp on CentOS 8 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 qmmp using dnf by running the following command:
sudo dnf -y install qmmp
How To Uninstall qmmp on CentOS 8
To uninstall only the qmmp package we can use the following command:
sudo dnf remove qmmp
References
Summary
In this tutorial we learn how to install qmmp on CentOS 8 using yum and dnf.