How To Install crudini on Rocky Linux 8
Introduction
In this tutorial we learn how to install crudini
on Rocky Linux 8.
What is crudini
A utility for easily handling ini files from the command line and shell scripts.
We can use yum
or dnf
to install crudini
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install crudini.
Install crudini 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 crudini
using dnf
by running the following command:
sudo dnf -y install crudini
Install crudini 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 crudini
using yum
by running the following command:
sudo yum -y install crudini
How To Uninstall crudini on Rocky Linux 8
To uninstall only the crudini
package we can use the following command:
sudo dnf remove crudini
crudini Package Contents on Rocky Linux 8
/usr/bin/crudini
/usr/share/doc/crudini
/usr/share/doc/crudini/COPYING
/usr/share/doc/crudini/NEWS
/usr/share/doc/crudini/README
/usr/share/doc/crudini/TODO
/usr/share/doc/crudini/example.ini
/usr/share/man/man1/crudini.1.gz
References
Summary
In this tutorial we learn how to install crudini
on Rocky Linux 8 using yum and dnf.