How to Install and Uninstall libload-perl Package on Ubuntu 21.04 (Hirsute Hippo)

Last updated: May 03,2024

1. Install "libload-perl" package

In this section, we are going to explain the necessary steps to install libload-perl on Ubuntu 21.04 (Hirsute Hippo)

$ sudo apt update $ sudo apt install libload-perl

2. Uninstall "libload-perl" package

Please follow the guidelines below to uninstall libload-perl on Ubuntu 21.04 (Hirsute Hippo):

$ sudo apt remove libload-perl $ sudo apt autoclean && sudo apt autoremove

3. Information about the libload-perl package on Ubuntu 21.04 (Hirsute Hippo)

Package: libload-perl
Architecture: all
Version: 0.24-1
Priority: optional
Section: universe/perl
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Perl Group
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 53
Depends: perl
Filename: pool/universe/libl/libload-perl/libload-perl_0.24-1_all.deb
Size: 20300
MD5sum: d34b626d940d8a40e14dc3df6c588b4d
SHA1: 4032cf12d8ebb49b14c78bab19bedd7484d0a058
SHA256: 2e816035762b8ad367fc797b55f52e5dff1c3f7b1f5ca9b4a2e07eaa6a90a2e4
SHA512: 2a7413012c7b25d7270a334c69e81dacb4b7ef14fb34f8c68cfbcbcae421a5f20bbdac08a3afa70be6f142e1b1fa206a262b3b7132f45eeb3e823341219b49ec
Homepage: https://metacpan.org/release/load
Description-en: pragma for controlling when subroutines will be loaded
The "load" pragma allows a module developer to give the application developer
more options with regards to optimize for memory or CPU usage. The "load"
pragma gives more control on the moment when subroutines are loaded and start
taking up memory. This allows the application developer to optimize for CPU
usage (by loading all of a module at compile time and thus reducing the
amount of CPU used during the execution of an application). Or allow the
application developer to optimize for memory usage, by loading subroutines
only when they are actually needed, thereby however increasing the amount of
CPU needed during execution.
.
The "load" pragma combines the best of both worlds from AutoLoader and
SelfLoader. And adds some more features.
.
In a situation where you want to use as little memory as possible, the "load"
pragma (in the context of a module) is a drop-in replacement for AutoLoader.
But for situations where you want to have a module load everything it could
ever possibly need (e.g. when starting a mod_perl server in pre-fork mode),
the "load" pragma can be used (in the context of an application) to have all
subroutines of a module loaded without having to make any change to the
source of the module in question.
Description-md5: 83c1c6f8be95867b4f053843a1f80545