How To Install libbiblio-isis-perl on Debian 12

Learn how to install libbiblio-isis-perl on Debian 12 with this tutorial. libbiblio-isis-perl is Perl module which reads ISIS databases

Introduction

In this tutorial we learn how to install libbiblio-isis-perl on Debian 12.

What is libbiblio-isis-perl

libbiblio-isis-perl is:

This module will read ISIS databases created by DOS CDS/ISIS, WinIsis or IsisMarc.

Biblio::Isis is a Perl module which reads ISIS databases produced by CDS/ISIS programs, such as MicroISIS, WinISIS and IsisMARC. ISIS was a popular family of integrated library systems provided as freeware by UNESCO, and this module provides methods to parse full databases and use them in a Perl program in order to migrate them to other formats.

It can create hash values from data in ISIS database (using to_hash), ASCII dump (using to_ascii) or just hash with field names and packed values (like ^asomething^belse).

Unique feature of this module is ability to include_deleted records. It will also skip zero sized fields (OpenIsis has a bug in XS bindings, so fields which are zero sized will be filled with random junk from memory).

It also has support for identifiers (only if ISIS database is created by IsisMarc), see to_hash.

Homepage: http://search.cpan.org/~dpavlin/Biblio-Isis-0.24/lib/Biblio/Isis.pm

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

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

sudo apt-get -y install libbiblio-isis-perl

Install libbiblio-isis-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libbiblio-isis-perl

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

sudo aptitude -y install libbiblio-isis-perl

How To Uninstall libbiblio-isis-perl on Debian 12

To uninstall only the libbiblio-isis-perl package we can use the following command:

sudo apt-get remove libbiblio-isis-perl

Uninstall libbiblio-isis-perl And Its Dependencies

To uninstall libbiblio-isis-perl and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove libbiblio-isis-perl

Remove libbiblio-isis-perl Configurations and Data

To remove libbiblio-isis-perl configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libbiblio-isis-perl

Remove libbiblio-isis-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libbiblio-isis-perl

Dependencies

libbiblio-isis-perl have the following dependencies:

References

Summary

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