How To Install perl-DBD-Pg on Rocky Linux 8
In this tutorial we learn how to install perl-DBD-Pg on Rocky Linux 8. perl-DBD-Pg is A PostgreSQL interface for perl
Introduction
In this tutorial we learn how to install perl-DBD-Pg
on Rocky Linux 8.
What is perl-DBD-Pg
DBD to PostgreSQL databases.
We can use yum
or dnf
to install perl-DBD-Pg
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-DBD-Pg.
Install perl-DBD-Pg 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-DBD-Pg
using dnf
by running the following command:
sudo dnf -y install perl-DBD-Pg
Install perl-DBD-Pg 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-DBD-Pg
using yum
by running the following command:
sudo yum -y install perl-DBD-Pg
How To Uninstall perl-DBD-Pg on Rocky Linux 8
To uninstall only the perl-DBD-Pg
package we can use the following command:
sudo dnf remove perl-DBD-Pg
perl-DBD-Pg Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/47
/usr/lib/.build-id/47/e7be9c9729a6b886f950d5bb9c216cc4653b5c
/usr/lib64/perl5/vendor_perl/Bundle/DBD/Pg.pm
/usr/lib64/perl5/vendor_perl/DBD
/usr/lib64/perl5/vendor_perl/DBD/Pg.pm
/usr/lib64/perl5/vendor_perl/auto/DBD
/usr/lib64/perl5/vendor_perl/auto/DBD/Pg
/usr/lib64/perl5/vendor_perl/auto/DBD/Pg/Pg.so
/usr/share/doc/perl-DBD-Pg
/usr/share/doc/perl-DBD-Pg/Changes
/usr/share/doc/perl-DBD-Pg/README
/usr/share/doc/perl-DBD-Pg/README.dev
/usr/share/doc/perl-DBD-Pg/TODO
/usr/share/man/man3/Bundle::DBD::Pg.3pm.gz
/usr/share/man/man3/DBD::Pg.3pm.gz
References
Summary
In this tutorial we learn how to install perl-DBD-Pg
on Rocky Linux 8 using yum and dnf.