How To Install libpst-libs on Rocky Linux 8
Introduction
In this tutorial we learn how to install libpst-libs
on Rocky Linux 8.
What is libpst-libs
The libpst-libs package contains the shared library used by the pst utilities.
We can use yum
or dnf
to install libpst-libs
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libpst-libs.
Install libpst-libs 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 libpst-libs
using dnf
by running the following command:
sudo dnf -y install libpst-libs
Install libpst-libs 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 libpst-libs
using yum
by running the following command:
sudo yum -y install libpst-libs
How To Uninstall libpst-libs on Rocky Linux 8
To uninstall only the libpst-libs
package we can use the following command:
sudo dnf remove libpst-libs
libpst-libs Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/01
/usr/lib/.build-id/01/cf56b4b837581bbc6efdb6c6f860ed78c17875
/usr/lib64/libpst.so.4
/usr/lib64/libpst.so.4.1.14
/usr/share/doc/libpst-libs
/usr/share/doc/libpst-libs/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/52
/usr/lib/.build-id/52/d9736d282cea5869bafb4b34149553e1e490a1
/usr/lib/libpst.so.4
/usr/lib/libpst.so.4.1.14
/usr/share/doc/libpst-libs
/usr/share/doc/libpst-libs/COPYING
References
Summary
In this tutorial we learn how to install libpst-libs
on Rocky Linux 8 using yum and dnf.