How To Install libamazon-sqs-simple-perl on Kali Linux
Introduction
In this tutorial we learn how to install libamazon-sqs-simple-perl
on Kali Linux.
What is libamazon-sqs-simple-perl
libamazon-sqs-simple-perl is:
Amazon::SQS::Simple is a Perl library providing an object-oriented API for the Amazon Simple Queue Service.
This version of Amazon::SQS::Simple defaults to work against version 2009-02-01 of the SQS API. Earlier API versions may or may not work.
There are three methods to install libamazon-sqs-simple-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 libamazon-sqs-simple-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 libamazon-sqs-simple-perl
using apt-get
by running the following command:
sudo apt-get -y install libamazon-sqs-simple-perl
Install libamazon-sqs-simple-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libamazon-sqs-simple-perl
using apt
by running the following command:
sudo apt -y install libamazon-sqs-simple-perl
Install libamazon-sqs-simple-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 libamazon-sqs-simple-perl
using aptitude
by running the following command:
sudo aptitude -y install libamazon-sqs-simple-perl
How To Uninstall libamazon-sqs-simple-perl on Kali Linux
To uninstall only the libamazon-sqs-simple-perl
package we can use the following command:
sudo apt-get remove libamazon-sqs-simple-perl
Uninstall libamazon-sqs-simple-perl And Its Dependencies
To uninstall libamazon-sqs-simple-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libamazon-sqs-simple-perl
Remove libamazon-sqs-simple-perl Configurations and Data
To remove libamazon-sqs-simple-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libamazon-sqs-simple-perl
Remove libamazon-sqs-simple-perl configuration, data, and all of its dependencies
We can use the following command to remove libamazon-sqs-simple-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libamazon-sqs-simple-perl
Dependencies
libamazon-sqs-simple-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libamazon-sqs-simple-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.