How To Install libnetapp-perl on Kali Linux
Introduction
In this tutorial we learn how to install libnetapp-perl
on Kali Linux.
What is libnetapp-perl
libnetapp-perl is:
NetApp provides a suite of modules for managing NetApp’s NAS devices, commonly referred to as “filers”.
Both SSH and telnet are supported, but only SSH is really recommended. NetApp doesn’t support concurrent access via telnet, and the error checking using SSH is far more robust. Not to mention, you can configure secure access via SSH without using passwords, but telnet access will always require a password.
There are three methods to install libnetapp-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 libnetapp-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 libnetapp-perl
using apt-get
by running the following command:
sudo apt-get -y install libnetapp-perl
Install libnetapp-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libnetapp-perl
using apt
by running the following command:
sudo apt -y install libnetapp-perl
Install libnetapp-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 libnetapp-perl
using aptitude
by running the following command:
sudo aptitude -y install libnetapp-perl
How To Uninstall libnetapp-perl on Kali Linux
To uninstall only the libnetapp-perl
package we can use the following command:
sudo apt-get remove libnetapp-perl
Uninstall libnetapp-perl And Its Dependencies
To uninstall libnetapp-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libnetapp-perl
Remove libnetapp-perl Configurations and Data
To remove libnetapp-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libnetapp-perl
Remove libnetapp-perl configuration, data, and all of its dependencies
We can use the following command to remove libnetapp-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libnetapp-perl
Dependencies
libnetapp-perl have the following dependencies:
- perl
- libclass-std-perl
- libclone-perl
- libnet-telnet-perl
- libparams-validate-perl
- libregexp-common-perl
- openssh-client
References
Summary
In this tutorial we learn how to install libnetapp-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.