How To Install libini_config on Rocky Linux 8
Introduction
In this tutorial we learn how to install libini_config
on Rocky Linux 8.
What is libini_config
Library to process config files in INI format into a libcollection data structure
We can use yum
or dnf
to install libini_config
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libini_config.
Install libini_config 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 libini_config
using dnf
by running the following command:
sudo dnf -y install libini_config
Install libini_config 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 libini_config
using yum
by running the following command:
sudo yum -y install libini_config
How To Uninstall libini_config on Rocky Linux 8
To uninstall only the libini_config
package we can use the following command:
sudo dnf remove libini_config
libini_config Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/d2
/usr/lib/.build-id/d2/25c662943a811bafb01571f56104f9f4c455ff
/usr/lib/libini_config.so.5
/usr/lib/libini_config.so.5.2.1
/usr/share/doc/libini_config
/usr/share/doc/libini_config/COPYING
/usr/share/doc/libini_config/COPYING.LESSER
/usr/lib/.build-id
/usr/lib/.build-id/fc
/usr/lib/.build-id/fc/c0a86df84bce4c034ae46b46c65fdec691ae94
/usr/lib64/libini_config.so.5
/usr/lib64/libini_config.so.5.2.1
/usr/share/doc/libini_config
/usr/share/doc/libini_config/COPYING
/usr/share/doc/libini_config/COPYING.LESSER
References
Summary
In this tutorial we learn how to install libini_config
on Rocky Linux 8 using yum and dnf.