How To Install libdata-uuid-perl on Debian 10

Learn how to install libdata-uuid-perl on Debian 10 with this tutorial. libdata-uuid-perl is globally/universally unique identifiers (GUIDs/UUIDs)

Introduction

In this tutorial we learn how to install libdata-uuid-perl on Debian 10.

What is libdata-uuid-perl

libdata-uuid-perl is:

Data::UUID provides a framework for generating v3 UUIDs (Universally Unique Identifiers, also known as GUIDs (Globally Unique Identifiers). A UUID is 128 bits long, and is guaranteed to be different from all other UUIDs/GUIDs generated until 3400 CE.

UUIDs were originally used in the Network Computing System (NCS) and later in the Open Software Foundation’s (OSF) Distributed Computing Environment. Currently many different technologies rely on UUIDs to provide unique identity for various software components. Microsoft COM/DCOM for instance, uses GUIDs very extensively to uniquely identify classes, applications and components across network-connected systems.

The algorithm for UUID generation, used by this extension, is described in the Internet Draft “UUIDs and GUIDs” by Paul J. Leach and Rich Salz. (See RFC 4122.) It provides reasonably efficient and reliable framework for generating UUIDs and supports fairly high allocation rates – 10 million per second per machine – and therefore is suitable for identifying both extremely short-lived and very persistent objects on a given system as well as across the network.

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

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

sudo apt-get -y install libdata-uuid-perl

Install libdata-uuid-perl Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libdata-uuid-perl

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

sudo aptitude -y install libdata-uuid-perl

How To Uninstall libdata-uuid-perl on Debian 10

To uninstall only the libdata-uuid-perl package we can use the following command:

sudo apt-get remove libdata-uuid-perl

Uninstall libdata-uuid-perl And Its Dependencies

To uninstall libdata-uuid-perl and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove libdata-uuid-perl

Remove libdata-uuid-perl Configurations and Data

To remove libdata-uuid-perl configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge libdata-uuid-perl

Remove libdata-uuid-perl configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge libdata-uuid-perl

Dependencies

libdata-uuid-perl have the following dependencies:

References

Summary

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