How To Install mxml-devel on Rocky Linux 8
Introduction
In this tutorial we learn how to install mxml-devel
on Rocky Linux 8.
What is mxml-devel
Libraries, include files, etc you can use to develop mxml applications.
We can use yum
or dnf
to install mxml-devel
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install mxml-devel.
Install mxml-devel on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install mxml-devel
using dnf
by running the following command:
sudo dnf -y install mxml-devel
Install mxml-devel on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install mxml-devel
using yum
by running the following command:
sudo yum -y install mxml-devel
How To Uninstall mxml-devel on Rocky Linux 8
To uninstall only the mxml-devel
package we can use the following command:
sudo dnf remove mxml-devel
mxml-devel Package Contents on Rocky Linux 8
/usr/include/mxml.h
/usr/lib64/libmxml.so
/usr/lib64/pkgconfig/mxml.pc
/usr/share/doc/mxml-devel
/usr/share/doc/mxml-devel/CHANGES.md
/usr/share/doc/mxml-devel/mxml-cover.jpg
/usr/share/doc/mxml-devel/mxml-cover.png
/usr/share/doc/mxml-devel/mxml.html
/usr/share/doc/mxml-devel/mxml.png
/usr/share/man/man3/mxml.3.gz
References
Summary
In this tutorial we learn how to install mxml-devel
on Rocky Linux 8 using yum and dnf.