How To Install liburi-find-perl on Kali Linux
Introduction
In this tutorial we learn how to install liburi-find-perl on Kali Linux.
What is liburi-find-perl
liburi-find-perl is:
URI::Find does one thing: Finds URIs and URLs in plain text. It finds them quickly and it finds them all (or what URI::URL considers a URI to be.) It only finds URIs which include a scheme (http:// or the like); for something a bit less strict have a look at URI::Find::Schemeless.
There are three methods to install liburi-find-perl 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 liburi-find-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install liburi-find-perl using apt-get by running the following command:
sudo apt-get -y install liburi-find-perlInstall liburi-find-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install liburi-find-perl using apt by running the following command:
sudo apt -y install liburi-find-perlInstall liburi-find-perl 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 liburi-find-perl using aptitude by running the following command:
sudo aptitude -y install liburi-find-perlHow To Uninstall liburi-find-perl on Kali Linux
To uninstall only the liburi-find-perl package we can use the following command:
sudo apt-get remove liburi-find-perlUninstall liburi-find-perl And Its Dependencies
To uninstall liburi-find-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove liburi-find-perlRemove liburi-find-perl Configurations and Data
To remove liburi-find-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge liburi-find-perlRemove liburi-find-perl configuration, data, and all of its dependencies
We can use the following command to remove liburi-find-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge liburi-find-perlDependencies
liburi-find-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install liburi-find-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.