How To Install libgraphics-colorutils-perl on Kali Linux
Introduction
In this tutorial we learn how to install libgraphics-colorutils-perl
on Kali Linux.
What is libgraphics-colorutils-perl
libgraphics-colorutils-perl is:
Graphics::ColorUtilss provides some utility functions to handle colors and color space conversions.
The interface has been kept simple, so that most functions can be called “inline” when making calls to graphics libraries such as GD, Tk, or when generating HTML/CSS.
There are three methods to install libgraphics-colorutils-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 libgraphics-colorutils-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 libgraphics-colorutils-perl
using apt-get
by running the following command:
sudo apt-get -y install libgraphics-colorutils-perl
Install libgraphics-colorutils-perl Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libgraphics-colorutils-perl
using apt
by running the following command:
sudo apt -y install libgraphics-colorutils-perl
Install libgraphics-colorutils-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 libgraphics-colorutils-perl
using aptitude
by running the following command:
sudo aptitude -y install libgraphics-colorutils-perl
How To Uninstall libgraphics-colorutils-perl on Kali Linux
To uninstall only the libgraphics-colorutils-perl
package we can use the following command:
sudo apt-get remove libgraphics-colorutils-perl
Uninstall libgraphics-colorutils-perl And Its Dependencies
To uninstall libgraphics-colorutils-perl
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libgraphics-colorutils-perl
Remove libgraphics-colorutils-perl Configurations and Data
To remove libgraphics-colorutils-perl
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libgraphics-colorutils-perl
Remove libgraphics-colorutils-perl configuration, data, and all of its dependencies
We can use the following command to remove libgraphics-colorutils-perl
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgraphics-colorutils-perl
Dependencies
libgraphics-colorutils-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libgraphics-colorutils-perl
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.