How to Install and Uninstall perl-parent.src Package on Oracle Linux 9

Last updated: July 05,2024

1. Install "perl-parent.src" package

Please follow the step by step instructions below to install perl-parent.src on Oracle Linux 9

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

2. Uninstall "perl-parent.src" package

Please follow the guidelines below to uninstall perl-parent.src on Oracle Linux 9:

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

3. Information about the perl-parent.src package on Oracle Linux 9

Last metadata expiration check: 3:07:35 ago on Thu Feb 15 07:50:05 2024.
Available Packages
Name : perl-parent
Epoch : 1
Version : 0.238
Release : 460.el9
Architecture : src
Size : 22 k
Source : None
Repository : ol9_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);
: }