How To Install pdfresurrect on Kali Linux
Introduction
In this tutorial we learn how to install pdfresurrect on Kali Linux.
What is pdfresurrect
pdfresurrect is:
PDFResurrect is a tool for analyzing and manipulating revisions to PDF documents (sometimes known as Adobe Acrobat files). The PDF format allows for previous changes to be retained in a revised version of the document, thereby keeping a running history of revisions to the document.
This tool extracts all previous revisions while also producing a summary of changes between revisions. It can also “scrub” or write data over the original instances of PDF objects that have been modified or deleted, in an effort to disguise information from previous versions that might not be intended for anyone else to read.
There are three methods to install pdfresurrect on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install pdfresurrect Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install pdfresurrect using apt-get by running the following command:
sudo apt-get -y install pdfresurrectInstall pdfresurrect Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install pdfresurrect using apt by running the following command:
sudo apt -y install pdfresurrectInstall pdfresurrect Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.
sudo aptitude updateAfter updating apt database, We can install pdfresurrect using aptitude by running the following command:
sudo aptitude -y install pdfresurrectHow To Uninstall pdfresurrect on Kali Linux
To uninstall only the pdfresurrect package we can use the following command:
sudo apt-get remove pdfresurrectUninstall pdfresurrect And Its Dependencies
To uninstall pdfresurrect and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove pdfresurrectRemove pdfresurrect Configurations and Data
To remove pdfresurrect configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge pdfresurrectRemove pdfresurrect configuration, data, and all of its dependencies
We can use the following command to remove pdfresurrect configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge pdfresurrectDependencies
pdfresurrect have the following dependencies:
References
Summary
In this tutorial we learn how to install pdfresurrect package on Kali Linux using different package management tools: apt, apt-get and aptitude.