How To Install diff-pdf on AlmaLinux 8
In this tutorial we learn how to install diff-pdf in AlmaLinux 8. diff-pdf is A simple tool for visually comparing two PDF files
Introduction
In this tutorial we learn how to install diff-pdf
on AlmaLinux 8.
What is diff-pdf
A simple tool for visually comparing two PDF files.
We can use yum
or dnf
to install diff-pdf
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install diff-pdf.
Install diff-pdf on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install diff-pdf
using dnf
by running the following command:
sudo dnf -y install diff-pdf
Install diff-pdf on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install diff-pdf
using yum
by running the following command:
sudo yum -y install diff-pdf
How To Uninstall diff-pdf on AlmaLinux 8
To uninstall only the diff-pdf
package we can use the following command:
sudo dnf remove diff-pdf
References
Summary
In this tutorial we learn how to install diff-pdf
on AlmaLinux 8 using yum and dnf.