How To Install perl-Locale-gettext on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-Locale-gettext
on Rocky Linux 8.
What is perl-Locale-gettext
The gettext module permits access from perl to the gettext() family of functions for retrieving message strings from databases constructed to internationalize software.
We can use yum
or dnf
to install perl-Locale-gettext
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Locale-gettext.
Install perl-Locale-gettext 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-Locale-gettext
using dnf
by running the following command:
sudo dnf -y install perl-Locale-gettext
Install perl-Locale-gettext 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-Locale-gettext
using yum
by running the following command:
sudo yum -y install perl-Locale-gettext
How To Uninstall perl-Locale-gettext on Rocky Linux 8
To uninstall only the perl-Locale-gettext
package we can use the following command:
sudo dnf remove perl-Locale-gettext
perl-Locale-gettext Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/1f
/usr/lib/.build-id/1f/9cd272329cf23b6c9439154cb9af9debc8fe22
/usr/lib64/perl5/vendor_perl/Locale
/usr/lib64/perl5/vendor_perl/Locale/gettext.pm
/usr/lib64/perl5/vendor_perl/auto/Locale
/usr/lib64/perl5/vendor_perl/auto/Locale/gettext
/usr/lib64/perl5/vendor_perl/auto/Locale/gettext/gettext.so
/usr/share/doc/perl-Locale-gettext
/usr/share/doc/perl-Locale-gettext/README
/usr/share/man/man3/Locale::gettext.3pm.gz
References
Summary
In this tutorial we learn how to install perl-Locale-gettext
on Rocky Linux 8 using yum and dnf.