How to Install and Uninstall libload-perl Package on Ubuntu 16.04 LTS (Xenial Xerus)

Last updated: May 19,2024

1. Install "libload-perl" package

Learn how to install libload-perl on Ubuntu 16.04 LTS (Xenial Xerus)

$ sudo apt update $ sudo apt install libload-perl

2. Uninstall "libload-perl" package

This guide covers the steps necessary to uninstall libload-perl on Ubuntu 16.04 LTS (Xenial Xerus):

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

3. Information about the libload-perl package on Ubuntu 16.04 LTS (Xenial Xerus)

Package: libload-perl
Priority: optional
Section: universe/perl
Installed-Size: 76
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Perl Group
Architecture: all
Version: 0.23-1
Depends: perl
Filename: pool/universe/libl/libload-perl/libload-perl_0.23-1_all.deb
Size: 22222
MD5sum: 8522151b8a19ffa69e178730dd9fa58e
SHA1: 654edcf6502693cb47b30414dbc3c0ead41d4c7c
SHA256: 79d666d9f9ded03495b5713832a79bffb183dc65dce8e68bc2541d4223cad039
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
Homepage: http://search.cpan.org/dist/load/
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu