How To Install libcss-packer-perl on Kali Linux

In this tutorial we learn how to install libcss-packer-perl on Kali Linux. libcss-packer-perl is fast pure perl CSS cleaner

Introduction

In this tutorial we learn how to install libcss-packer-perl on Kali Linux.

What is libcss-packer-perl

libcss-packer-perl is:

CSS::Packer is a pure Perl library for CSS cleanup. It can do CSS reformatting, whitespace and newline removal, in order to get a “pretty-printed” version or a minimal size version of the original CSS code.

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

sudo apt-get -y install libcss-packer-perl

Install libcss-packer-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libcss-packer-perl

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

sudo aptitude -y install libcss-packer-perl

How To Uninstall libcss-packer-perl on Kali Linux

To uninstall only the libcss-packer-perl package we can use the following command:

sudo apt-get remove libcss-packer-perl

Uninstall libcss-packer-perl And Its Dependencies

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

sudo apt-get -y autoremove libcss-packer-perl

Remove libcss-packer-perl Configurations and Data

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

sudo apt-get -y purge libcss-packer-perl

Remove libcss-packer-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libcss-packer-perl

Dependencies

libcss-packer-perl have the following dependencies:

References

Summary

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