How To Install libfennec-lite-perl on Kali Linux
Introduction
In this tutorial we learn how to install libfennec-lite-perl
on Kali Linux.
What is libfennec-lite-perl
libfennec-lite-perl is:
Fennec, a Perl test helper providing RSPEC, Workflows, Parallelization, and Encapsulation, does a ton, but it may be hard to adopt it all at once. It also is a large project, and has not yet been fully split into component projects. Fennec::Lite takes a minimalist approach to do for Fennec what Mouse does for Moose.
Fennec::Lite is a single module file with no non-core dependencies. It does not cover any of the more advanced features such as result capturing or SPEC workflows. This module only covers test grouping and group randomization. You can also use the FENNEC_ITEM variable with a group name or line number to run a specific test group only. Test::Builder is used under the hood for TAP output.
There are three methods to install libfennec-lite-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 libfennec-lite-perl Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libfennec-lite-perl
using apt-get
by running the following command:
sudo apt-get -y install libfennec-lite-perl
Install libfennec-lite-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libfennec-lite-perl
using apt
by running the following command:
sudo apt -y install libfennec-lite-perl
Install libfennec-lite-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 update
After updating apt database, We can install libfennec-lite-perl
using aptitude
by running the following command:
sudo aptitude -y install libfennec-lite-perl
How To Uninstall libfennec-lite-perl on Kali Linux
To uninstall only the libfennec-lite-perl
package we can use the following command:
sudo apt-get remove libfennec-lite-perl
Uninstall libfennec-lite-perl And Its Dependencies
To uninstall libfennec-lite-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libfennec-lite-perl
Remove libfennec-lite-perl Configurations and Data
To remove libfennec-lite-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libfennec-lite-perl
Remove libfennec-lite-perl configuration, data, and all of its dependencies
We can use the following command to remove libfennec-lite-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libfennec-lite-perl
Dependencies
libfennec-lite-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libfennec-lite-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.