How To Install libarchive-zip-perl on Debian 11

In this tutorial we learn how to install libarchive-zip-perl on Debian 11. libarchive-zip-perl is Perl module for manipulation of ZIP archives

Introduction

In this tutorial we learn how to install libarchive-zip-perl on Debian 11.

What is libarchive-zip-perl

libarchive-zip-perl is:

The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files.

Zip archives can be created, or you can read from existing zip files. Once created, they can be written to files, streams, or strings.

Members can be added, removed, extracted, replaced, rearranged, and enumerated. They can also be renamed or have their dates, comments, or other attributes queried or modified. Their data can be compressed or uncompressed as needed. Members can be created from members in existing Zip files, or from existing directories, files, or strings.

There are three methods to install libarchive-zip-perl on Debian 11. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libarchive-zip-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 libarchive-zip-perl using apt-get by running the following command:

sudo apt-get -y install libarchive-zip-perl

Install libarchive-zip-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libarchive-zip-perl

Install libarchive-zip-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libarchive-zip-perl using aptitude by running the following command:

sudo aptitude -y install libarchive-zip-perl

How To Uninstall libarchive-zip-perl on Debian 11

To uninstall only the libarchive-zip-perl package we can use the following command:

sudo apt-get remove libarchive-zip-perl

Uninstall libarchive-zip-perl And Its Dependencies

To uninstall libarchive-zip-perl and its dependencies that are no longer needed by Debian 11, we can use the command below:

sudo apt-get -y autoremove libarchive-zip-perl

Remove libarchive-zip-perl Configurations and Data

To remove libarchive-zip-perl configuration and data from Debian 11 we can use the following command:

sudo apt-get -y purge libarchive-zip-perl

Remove libarchive-zip-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libarchive-zip-perl

Dependencies

libarchive-zip-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libarchive-zip-perl package on Debian 11 using different package management tools: apt, apt-get and aptitude.