How To Install perl-Class-Singleton on Rocky Linux 8

In this tutorial we learn how to install perl-Class-Singleton on Rocky Linux 8. perl-Class-Singleton is Implementation of a “Singleton” class

Introduction

In this tutorial we learn how to install perl-Class-Singleton on Rocky Linux 8.

What is perl-Class-Singleton

This is the Class that can have only one instance in any system. An example of a Singleton might be a print spooler or system registry. This module implements a Singleton class from which other classes can be derived. By itself, the Class instantiation of a single object. In deriving a class from Class method and can implement whatever specific functionality is required.

We can use yum or dnf to install perl-Class-Singleton on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Class-Singleton.

Install perl-Class-Singleton on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-Class-Singleton using dnf by running the following command:

sudo dnf -y install perl-Class-Singleton

Install perl-Class-Singleton on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install perl-Class-Singleton using yum by running the following command:

sudo yum -y install perl-Class-Singleton

How To Uninstall perl-Class-Singleton on Rocky Linux 8

To uninstall only the perl-Class-Singleton package we can use the following command:

sudo dnf remove perl-Class-Singleton

perl-Class-Singleton Package Contents on Rocky Linux 8

/usr/share/doc/perl-Class-Singleton
/usr/share/doc/perl-Class-Singleton/Changes
/usr/share/doc/perl-Class-Singleton/README
/usr/share/man/man3/Class::Singleton.3pm.gz
/usr/share/perl5/vendor_perl/Class
/usr/share/perl5/vendor_perl/Class/Singleton.pm

References

Summary

In this tutorial we learn how to install perl-Class-Singleton on Rocky Linux 8 using yum and dnf.