How To Install pdfedit on CentOS 7
Introduction
In this tutorial we learn how to install pdfedit on CentOS 7.
What is pdfedit
Free pdf editing using PdfEdit. Complete editing of pdf documents is made possible with PDFedit. You can change either raw pdf objects (for advanced users) or use predefined gui functions. Functions can be easily added as everything is based on a script.
We can use yum or dnf to install pdfedit on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install pdfedit.
Install pdfedit on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install pdfedit using yum by running the following command:
sudo yum -y install pdfedit
Install pdfedit on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install pdfedit using dnf by running the following command:
sudo dnf -y install pdfedit
How To Uninstall pdfedit on CentOS 7
To uninstall only the pdfedit package we can use the following command:
sudo dnf remove pdfedit
References
Summary
In this tutorial we learn how to install pdfedit on CentOS 7 using yum and dnf.