How To Install libsharyanto-file-util-perl on Kali Linux
Introduction
In this tutorial we learn how to install libsharyanto-file-util-perl
on Kali Linux.
What is libsharyanto-file-util-perl
libsharyanto-file-util-perl is:
SHARYANTO::File::Util is part of SHARYANTO::Utils, a heterogenous collection of modules that will eventually have their own proper distributions, but do not yet because they are not ready for some reason or another.
It provides a tiny collection of small, handy utilities for file processing.
There are three methods to install libsharyanto-file-util-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 libsharyanto-file-util-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 libsharyanto-file-util-perl
using apt-get
by running the following command:
sudo apt-get -y install libsharyanto-file-util-perl
Install libsharyanto-file-util-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libsharyanto-file-util-perl
using apt
by running the following command:
sudo apt -y install libsharyanto-file-util-perl
Install libsharyanto-file-util-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 libsharyanto-file-util-perl
using aptitude
by running the following command:
sudo aptitude -y install libsharyanto-file-util-perl
How To Uninstall libsharyanto-file-util-perl on Kali Linux
To uninstall only the libsharyanto-file-util-perl
package we can use the following command:
sudo apt-get remove libsharyanto-file-util-perl
Uninstall libsharyanto-file-util-perl And Its Dependencies
To uninstall libsharyanto-file-util-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libsharyanto-file-util-perl
Remove libsharyanto-file-util-perl Configurations and Data
To remove libsharyanto-file-util-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libsharyanto-file-util-perl
Remove libsharyanto-file-util-perl configuration, data, and all of its dependencies
We can use the following command to remove libsharyanto-file-util-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libsharyanto-file-util-perl
Dependencies
libsharyanto-file-util-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libsharyanto-file-util-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.