How To Install libapp-nopaste-perl on Kali Linux
Introduction
In this tutorial we learn how to install libapp-nopaste-perl on Kali Linux.
What is libapp-nopaste-perl
libapp-nopaste-perl is:
App::Nopaste is a Perl module and application collection to upload arbitrary text, usually code, to pastebins (also known as nopaste sites) for public viewing. They’re used a lot in IRC channels to show code that would normally be too long to give directly in the channel.
Each pastebin is slightly different; this program attempts to encapsulate the differences between them and provide a unified, redundant interface to upload code. If one site doesn’t work, it simply tries a different one.
There are three methods to install libapp-nopaste-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 libapp-nopaste-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libapp-nopaste-perl using apt-get by running the following command:
sudo apt-get -y install libapp-nopaste-perlInstall libapp-nopaste-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libapp-nopaste-perl using apt by running the following command:
sudo apt -y install libapp-nopaste-perlInstall libapp-nopaste-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 updateAfter updating apt database, We can install libapp-nopaste-perl using aptitude by running the following command:
sudo aptitude -y install libapp-nopaste-perlHow To Uninstall libapp-nopaste-perl on Kali Linux
To uninstall only the libapp-nopaste-perl package we can use the following command:
sudo apt-get remove libapp-nopaste-perlUninstall libapp-nopaste-perl And Its Dependencies
To uninstall libapp-nopaste-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libapp-nopaste-perlRemove libapp-nopaste-perl Configurations and Data
To remove libapp-nopaste-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libapp-nopaste-perlRemove libapp-nopaste-perl configuration, data, and all of its dependencies
We can use the following command to remove libapp-nopaste-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libapp-nopaste-perlDependencies
libapp-nopaste-perl have the following dependencies:
- libbrowser-open-perl
- libclass-load-perl
- libgetopt-long-descriptive-perl
- libjson-maybexs-perl
- libmodule-pluggable-perl
- libmodule-runtime-perl
- libnamespace-clean-perl
- liburi-perl
- libwww-mechanize-perl
- perl
References
Summary
In this tutorial we learn how to install libapp-nopaste-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.