How To Install libpath_utils on Rocky Linux 8
Introduction
In this tutorial we learn how to install libpath_utils
on Rocky Linux 8.
What is libpath_utils
Utility functions to manipulate filesystem pathnames
We can use yum
or dnf
to install libpath_utils
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libpath_utils.
Install libpath_utils 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 libpath_utils
using dnf
by running the following command:
sudo dnf -y install libpath_utils
Install libpath_utils 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 libpath_utils
using yum
by running the following command:
sudo yum -y install libpath_utils
How To Uninstall libpath_utils on Rocky Linux 8
To uninstall only the libpath_utils
package we can use the following command:
sudo dnf remove libpath_utils
libpath_utils Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/3e
/usr/lib/.build-id/3e/4e72371c17af90a9492c0b159c7c80f4e991fd
/usr/lib/libpath_utils.so.1
/usr/lib/libpath_utils.so.1.0.1
/usr/share/doc/libpath_utils
/usr/share/doc/libpath_utils/COPYING
/usr/share/doc/libpath_utils/COPYING.LESSER
/usr/lib/.build-id
/usr/lib/.build-id/de
/usr/lib/.build-id/de/9dc98853777bba0909b07820ddcc26c198c9ab
/usr/lib64/libpath_utils.so.1
/usr/lib64/libpath_utils.so.1.0.1
/usr/share/doc/libpath_utils
/usr/share/doc/libpath_utils/COPYING
/usr/share/doc/libpath_utils/COPYING.LESSER
References
Summary
In this tutorial we learn how to install libpath_utils
on Rocky Linux 8 using yum and dnf.