How To Install libmikmod on Fedora 34
Introduction
In this tutorial we learn how to install libmikmod
on Fedora 34.
What is libmikmod
libmikmod is a library used by the mikmod MOD music file player for UNIX-like systems. Supported file formats include MOD, STM, S3M, MTM, XM, ULT and IT. libmikmod 3.3.11.1 10.fc34 x86_64 162 k libmikmod-3.3.11.1-10.fc34.src.rpm fedora A MOD music file player library http GPLv2 and LGPLv2+ libmikmod is a library used by the mikmod MOD music file player for UNIX-like systems. Supported file formats include MOD, STM, S3M, MTM, XM, ULT and IT.
We can use yum
or dnf
to install libmikmod
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libmikmod.
Install libmikmod on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libmikmod
using dnf
by running the following command:
sudo dnf -y install libmikmod
Install libmikmod on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libmikmod
using yum
by running the following command:
sudo yum -y install libmikmod
How To Uninstall libmikmod on Fedora 34
To uninstall only the libmikmod
package we can use the following command:
sudo dnf remove libmikmod
libmikmod Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/07
/usr/lib/.build-id/07/1de16a958fb01f617d0a1a5a8444b2829b1321
/usr/lib64/libmikmod.so.3
/usr/lib64/libmikmod.so.3.3.0
/usr/share/doc/libmikmod
/usr/share/doc/libmikmod/AUTHORS
/usr/share/doc/libmikmod/NEWS
/usr/share/doc/libmikmod/README
/usr/share/doc/libmikmod/TODO
/usr/share/licenses/libmikmod
/usr/share/licenses/libmikmod/COPYING.LESSER
/usr/share/licenses/libmikmod/COPYING.LIB
/usr/lib/.build-id
/usr/lib/.build-id/1f
/usr/lib/.build-id/1f/c130e2a40468e255e75eb0b6bc99e79912aafa
/usr/lib/libmikmod.so.3
/usr/lib/libmikmod.so.3.3.0
/usr/share/doc/libmikmod
/usr/share/doc/libmikmod/AUTHORS
/usr/share/doc/libmikmod/NEWS
/usr/share/doc/libmikmod/README
/usr/share/doc/libmikmod/TODO
/usr/share/licenses/libmikmod
/usr/share/licenses/libmikmod/COPYING.LESSER
/usr/share/licenses/libmikmod/COPYING.LIB
References
- [libmikmod website](http://mikmod.sourceforge.net/ http://mikmod.sourceforge.net/)
Summary
In this tutorial we learn how to install libmikmod
on Fedora 34 using yum and dnf.