How To Install libcache-memcached-managed-perl on Kali Linux
Introduction
In this tutorial we learn how to install libcache-memcached-managed-perl
on Kali Linux.
What is libcache-memcached-managed-perl
libcache-memcached-managed-perl is:
The Cache::Memcached::Managed module provides an API to values, cached in one or more memcached servers. Apart from being very similar to the API of Cache::Memcached, the Cached::Memcached::Managed API allows for management of groups of values, for simplified key generation and expiration, as well as version and namespace management and a few other goodies.
Over the functionality provided by the Cache::Memcached module, this module provides: automatic key generation, ID refinement, version management, namespace support, group management, easy (default) expiration specification, automatic fork() detection, magical increment, instant invalidation, dead memcached server detection, starting/stopping memcached servers and an extensive test-suite.
The basic premise is that each piece of information that is to be cached, can be identified by a key, an optional ID, a version and a namespace. The key determines the basic identification of the value to be cached. The ID specifies a refinement on the basic identification. The version ensures that differently formatted values with the same key and ID do not interfere with each other. The namespace ensures that different realms of information (for instance, for different users) do not interfere with each other.
There are three methods to install libcache-memcached-managed-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 libcache-memcached-managed-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 libcache-memcached-managed-perl
using apt-get
by running the following command:
sudo apt-get -y install libcache-memcached-managed-perl
Install libcache-memcached-managed-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libcache-memcached-managed-perl
using apt
by running the following command:
sudo apt -y install libcache-memcached-managed-perl
Install libcache-memcached-managed-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 libcache-memcached-managed-perl
using aptitude
by running the following command:
sudo aptitude -y install libcache-memcached-managed-perl
How To Uninstall libcache-memcached-managed-perl on Kali Linux
To uninstall only the libcache-memcached-managed-perl
package we can use the following command:
sudo apt-get remove libcache-memcached-managed-perl
Uninstall libcache-memcached-managed-perl And Its Dependencies
To uninstall libcache-memcached-managed-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libcache-memcached-managed-perl
Remove libcache-memcached-managed-perl Configurations and Data
To remove libcache-memcached-managed-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libcache-memcached-managed-perl
Remove libcache-memcached-managed-perl configuration, data, and all of its dependencies
We can use the following command to remove libcache-memcached-managed-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libcache-memcached-managed-perl
Dependencies
libcache-memcached-managed-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libcache-memcached-managed-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.