How To Install libnet-z3950-zoom-perl on Kali Linux
Introduction
In this tutorial we learn how to install libnet-z3950-zoom-perl
on Kali Linux.
What is libnet-z3950-zoom-perl
libnet-z3950-zoom-perl is:
Net::Z3950::ZOOM provides a nice, Perlish implementation of the ZOOM Abstract API described and documented at http://zoom.z3950.org/api/
The ZOOM module is implemented as a set of thin classes on top of the non-OO functions provided by this distribution’s Net::Z3950::ZOOM module, which in turn is a thin layer on top of the ZOOM-C code supplied as part of Index Data’s YAZ Toolkit. Because ZOOM-C is also the underlying code that implements ZOOM bindings in C++, Visual Basic, Scheme, Ruby, .NET (including C#) and other languages, this Perl module works compatibly with those other implementations. (Of course, the point of a public API such as ZOOM is that all implementations should be compatible anyway; but knowing that the same code is running is reassuring.)
There are three methods to install libnet-z3950-zoom-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 libnet-z3950-zoom-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 libnet-z3950-zoom-perl
using apt-get
by running the following command:
sudo apt-get -y install libnet-z3950-zoom-perl
Install libnet-z3950-zoom-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libnet-z3950-zoom-perl
using apt
by running the following command:
sudo apt -y install libnet-z3950-zoom-perl
Install libnet-z3950-zoom-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 libnet-z3950-zoom-perl
using aptitude
by running the following command:
sudo aptitude -y install libnet-z3950-zoom-perl
How To Uninstall libnet-z3950-zoom-perl on Kali Linux
To uninstall only the libnet-z3950-zoom-perl
package we can use the following command:
sudo apt-get remove libnet-z3950-zoom-perl
Uninstall libnet-z3950-zoom-perl And Its Dependencies
To uninstall libnet-z3950-zoom-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libnet-z3950-zoom-perl
Remove libnet-z3950-zoom-perl Configurations and Data
To remove libnet-z3950-zoom-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libnet-z3950-zoom-perl
Remove libnet-z3950-zoom-perl configuration, data, and all of its dependencies
We can use the following command to remove libnet-z3950-zoom-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libnet-z3950-zoom-perl
Dependencies
libnet-z3950-zoom-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libnet-z3950-zoom-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.