How To Install libsymbol-global-name-perl on Kali Linux
Introduction
In this tutorial we learn how to install libsymbol-global-name-perl
on Kali Linux.
What is libsymbol-global-name-perl
libsymbol-global-name-perl is:
Symbol::Global::Name lookups the symbol table to find an element by reference.
Its find() method takes a reference and optionally a package name. It returns the name of the referenced variable as long as it’s in the package or sub-package and it’s a global variable.
There are three methods to install libsymbol-global-name-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 libsymbol-global-name-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 libsymbol-global-name-perl
using apt-get
by running the following command:
sudo apt-get -y install libsymbol-global-name-perl
Install libsymbol-global-name-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libsymbol-global-name-perl
using apt
by running the following command:
sudo apt -y install libsymbol-global-name-perl
Install libsymbol-global-name-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 libsymbol-global-name-perl
using aptitude
by running the following command:
sudo aptitude -y install libsymbol-global-name-perl
How To Uninstall libsymbol-global-name-perl on Kali Linux
To uninstall only the libsymbol-global-name-perl
package we can use the following command:
sudo apt-get remove libsymbol-global-name-perl
Uninstall libsymbol-global-name-perl And Its Dependencies
To uninstall libsymbol-global-name-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libsymbol-global-name-perl
Remove libsymbol-global-name-perl Configurations and Data
To remove libsymbol-global-name-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libsymbol-global-name-perl
Remove libsymbol-global-name-perl configuration, data, and all of its dependencies
We can use the following command to remove libsymbol-global-name-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libsymbol-global-name-perl
Dependencies
libsymbol-global-name-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libsymbol-global-name-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.