How To Install libproc-invokeeditor-perl on Kali Linux

In this tutorial we learn how to install libproc-invokeeditor-perl on Kali Linux. libproc-invokeeditor-perl is Perl extension for starting a text editor

Introduction

In this tutorial we learn how to install libproc-invokeeditor-perl on Kali Linux.

What is libproc-invokeeditor-perl

libproc-invokeeditor-perl is:

Proc::InvokeEditor module provides the ability to supply some text to an external text editor, have it edited by the user, and retrieve the results.

The File::Temp module is used to provide secure, safe temporary files, and File::Temp is set to its highest available level of security. This may cause problems on some systems where no secure temporary directory is available.

When the editor is started, no subshell is used. Your path will be scanned to find the binary to use for each editor if the string given does not exist as a file, and if a named editor contains whitespace, for example if you try to use the editor ‘xemacs -nw’, then the string will be split on whitespace and anything after the editor name will be passed as arguments to your editor. A shell is not used but this should cover most simple cases.

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

sudo apt-get -y install libproc-invokeeditor-perl

Install libproc-invokeeditor-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libproc-invokeeditor-perl

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

sudo aptitude -y install libproc-invokeeditor-perl

How To Uninstall libproc-invokeeditor-perl on Kali Linux

To uninstall only the libproc-invokeeditor-perl package we can use the following command:

sudo apt-get remove libproc-invokeeditor-perl

Uninstall libproc-invokeeditor-perl And Its Dependencies

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

sudo apt-get -y autoremove libproc-invokeeditor-perl

Remove libproc-invokeeditor-perl Configurations and Data

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

sudo apt-get -y purge libproc-invokeeditor-perl

Remove libproc-invokeeditor-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libproc-invokeeditor-perl

Dependencies

libproc-invokeeditor-perl have the following dependencies:

References

Summary

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