How To Install libimage-math-constrain-perl on Kali Linux
Introduction
In this tutorial we learn how to install libimage-math-constrain-perl on Kali Linux.
What is libimage-math-constrain-perl
libimage-math-constrain-perl is:
Image::Math::Constrain is a Perl module that implements all of the math behind implementing image size constraints. It allows one to restrict the dimensions of an image by checking to see if the image is larger than the desired final dimensions, and if so, provide a way to scale the image down proportionally so it fits within the constraints. It can set constraints based on width, height, or both, and is guaranteed to return dimensions that are proportional to the original – that is, they will have the same aspect ratio. It also returns the necessary scaling factor, so you can pass it to a module to do the work.
There are three methods to install libimage-math-constrain-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 libimage-math-constrain-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libimage-math-constrain-perl using apt-get by running the following command:
sudo apt-get -y install libimage-math-constrain-perlInstall libimage-math-constrain-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libimage-math-constrain-perl using apt by running the following command:
sudo apt -y install libimage-math-constrain-perlInstall libimage-math-constrain-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 libimage-math-constrain-perl using aptitude by running the following command:
sudo aptitude -y install libimage-math-constrain-perlHow To Uninstall libimage-math-constrain-perl on Kali Linux
To uninstall only the libimage-math-constrain-perl package we can use the following command:
sudo apt-get remove libimage-math-constrain-perlUninstall libimage-math-constrain-perl And Its Dependencies
To uninstall libimage-math-constrain-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libimage-math-constrain-perlRemove libimage-math-constrain-perl Configurations and Data
To remove libimage-math-constrain-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libimage-math-constrain-perlRemove libimage-math-constrain-perl configuration, data, and all of its dependencies
We can use the following command to remove libimage-math-constrain-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libimage-math-constrain-perlDependencies
libimage-math-constrain-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libimage-math-constrain-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.