How to Install and Uninstall perl-parent.noarch Package on CentOS Stream 9

Last updated: July 04,2024

1. Install "perl-parent.noarch" package

In this section, we are going to explain the necessary steps to install perl-parent.noarch on CentOS Stream 9

$ sudo dnf update $ sudo dnf install perl-parent.noarch

2. Uninstall "perl-parent.noarch" package

Learn how to uninstall perl-parent.noarch on CentOS Stream 9:

$ sudo dnf remove perl-parent.noarch $ sudo dnf autoremove

3. Information about the perl-parent.noarch package on CentOS Stream 9

Last metadata expiration check: 2:33:32 ago on Sat Mar 16 16:03:45 2024.
Installed Packages
Name : perl-parent
Epoch : 1
Version : 0.238
Release : 460.el9
Architecture : noarch
Size : 9.3 k
Source : perl-parent-0.238-460.el9.src.rpm
Repository : @System
From repo : appstream
Summary : Establish an ISA relationship with base classes at compile time
URL : https://metacpan.org/release/parent
License : GPL+ or Artistic
Description : Allows you to both load one or more modules, while setting up inheritance
: from those modules at the same time. Mostly similar in effect to:
:
: package Baz;
:
: BEGIN {
: require Foo;
: require Bar;
:
: push @ISA, qw(Foo Bar);
: }