How To Install libasync-mergepoint-perl on Kali Linux

In this tutorial we learn how to install libasync-mergepoint-perl on Kali Linux. libasync-mergepoint-perl is Perl module to resynchronize multiple control flows

Introduction

In this tutorial we learn how to install libasync-mergepoint-perl on Kali Linux.

What is libasync-mergepoint-perl

libasync-mergepoint-perl is:

Async::Mergepoint is a module designed to provide a way to resynchronize multiple parallel control flows. Often in program logic, multiple different steps need to be taken that are independent of each other, but their total result is needed before the next step can be taken. In synchronous code, the usual approach is to do them sequentially.

An asynchronous or event-based program could do this, but if each step involves some IO idle time, better overall performance can often be gained by running the steps in parallel. A Async::MergePoint object can then be used to wait for all of the steps to complete, before passing the combined result of each step on to the next stage.

There are three methods to install libasync-mergepoint-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 libasync-mergepoint-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 libasync-mergepoint-perl using apt-get by running the following command:

sudo apt-get -y install libasync-mergepoint-perl

Install libasync-mergepoint-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libasync-mergepoint-perl using apt by running the following command:

sudo apt -y install libasync-mergepoint-perl

Install libasync-mergepoint-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 libasync-mergepoint-perl using aptitude by running the following command:

sudo aptitude -y install libasync-mergepoint-perl

How To Uninstall libasync-mergepoint-perl on Kali Linux

To uninstall only the libasync-mergepoint-perl package we can use the following command:

sudo apt-get remove libasync-mergepoint-perl

Uninstall libasync-mergepoint-perl And Its Dependencies

To uninstall libasync-mergepoint-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libasync-mergepoint-perl

Remove libasync-mergepoint-perl Configurations and Data

To remove libasync-mergepoint-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libasync-mergepoint-perl

Remove libasync-mergepoint-perl configuration, data, and all of its dependencies

We can use the following command to remove libasync-mergepoint-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libasync-mergepoint-perl

Dependencies

libasync-mergepoint-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libasync-mergepoint-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.