How To Install libdublincore-record-perl on Ubuntu 18.04

In this tutorial we learn how to install libdublincore-record-perl on Ubuntu 18.04. libdublincore-record-perl is Container for Dublin Core metadata elements

Introduction

In this tutorial we learn how to install libdublincore-record-perl on Ubuntu 18.04.

What is libdublincore-record-perl

libdublincore-record-perl is:

DublinCore::Record methods such as element(), elements(), title(), etc return DublinCore::Element objects as their result. These can be queried further to extract an elements content, qualifier, language, and schema. For a definition of these attributes please see RFC 2731 and http://www.dublincore.org/.

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

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

sudo apt-get -y install libdublincore-record-perl

Install libdublincore-record-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libdublincore-record-perl

Install libdublincore-record-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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install libdublincore-record-perl

How To Uninstall libdublincore-record-perl on Ubuntu 18.04

To uninstall only the libdublincore-record-perl package we can use the following command:

sudo apt-get remove libdublincore-record-perl

Uninstall libdublincore-record-perl And Its Dependencies

To uninstall libdublincore-record-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libdublincore-record-perl

Remove libdublincore-record-perl Configurations and Data

To remove libdublincore-record-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libdublincore-record-perl

Remove libdublincore-record-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libdublincore-record-perl

References

Summary

In this tutorial we learn how to install libdublincore-record-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.