How To Install libpagemaker on Rocky Linux 8
Introduction
In this tutorial we learn how to install libpagemaker
on Rocky Linux 8.
What is libpagemaker
libpagemaker is library providing ability to interpret and import Adobe PageMaker documents into various applications.
We can use yum
or dnf
to install libpagemaker
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libpagemaker.
Install libpagemaker 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 libpagemaker
using dnf
by running the following command:
sudo dnf -y install libpagemaker
Install libpagemaker 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 libpagemaker
using yum
by running the following command:
sudo yum -y install libpagemaker
How To Uninstall libpagemaker on Rocky Linux 8
To uninstall only the libpagemaker
package we can use the following command:
sudo dnf remove libpagemaker
libpagemaker Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/68
/usr/lib/.build-id/68/0321cfcec976e69386c58111c8395dc39ef556
/usr/lib/libpagemaker-0.0.so.0
/usr/lib/libpagemaker-0.0.so.0.0.4
/usr/share/doc/libpagemaker
/usr/share/doc/libpagemaker/AUTHORS
/usr/share/doc/libpagemaker/NEWS
/usr/share/licenses/libpagemaker
/usr/share/licenses/libpagemaker/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/8af4e01a2ad01169e901e52bacaf3e5841770c
/usr/lib64/libpagemaker-0.0.so.0
/usr/lib64/libpagemaker-0.0.so.0.0.4
/usr/share/doc/libpagemaker
/usr/share/doc/libpagemaker/AUTHORS
/usr/share/doc/libpagemaker/NEWS
/usr/share/licenses/libpagemaker
/usr/share/licenses/libpagemaker/COPYING
References
Summary
In this tutorial we learn how to install libpagemaker
on Rocky Linux 8 using yum and dnf.