How To Install libtrycatch-perl on Kali Linux
Introduction
In this tutorial we learn how to install libtrycatch-perl on Kali Linux.
What is libtrycatch-perl
libtrycatch-perl is:
TryCatch aims to provide a nicer syntax and method to catch errors in Perl, similar to what is found in other languages (such as Java, Python or C++). The standard method of using “eval {}; if ($@) {}” is often prone to subtle bugs, primarily that its far too easy to stomp on the error in error handlers. And also eval/if isn’t the nicest idiom.
There are three methods to install libtrycatch-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 libtrycatch-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libtrycatch-perl using apt-get by running the following command:
sudo apt-get -y install libtrycatch-perlInstall libtrycatch-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libtrycatch-perl using apt by running the following command:
sudo apt -y install libtrycatch-perlInstall libtrycatch-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 libtrycatch-perl using aptitude by running the following command:
sudo aptitude -y install libtrycatch-perlHow To Uninstall libtrycatch-perl on Kali Linux
To uninstall only the libtrycatch-perl package we can use the following command:
sudo apt-get remove libtrycatch-perlUninstall libtrycatch-perl And Its Dependencies
To uninstall libtrycatch-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libtrycatch-perlRemove libtrycatch-perl Configurations and Data
To remove libtrycatch-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libtrycatch-perlRemove libtrycatch-perl configuration, data, and all of its dependencies
We can use the following command to remove libtrycatch-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtrycatch-perlDependencies
libtrycatch-perl have the following dependencies:
- libc6
- perl
- perlapi-5.32.0
- libdevel-declare-perl
- libmoose-perl
- libmoosex-types-perl
- libparse-method-signatures-perl
- libscope-upper-perl
- libsub-exporter-perl
- libvariable-magic-perl
- libb-hooks-endofscope-perl
- libb-hooks-op-check-perl
- libb-hooks-op-ppaddr-perl
- libextutils-depends-perl
- libnamespace-clean-perl
References
Summary
In this tutorial we learn how to install libtrycatch-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.