How To Install perl-DBIx-Safe on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-DBIx-Safe
on Rocky Linux 8.
What is perl-DBIx-Safe
The purpose of this module is to give controlled, limited access to an application, rather than simply passing it a raw database handle through DBI. DBIx through the commands you tell it to. It filters all things related to the database handle - methods and attributes.
We can use yum
or dnf
to install perl-DBIx-Safe
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-DBIx-Safe.
Install perl-DBIx-Safe 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-DBIx-Safe
using dnf
by running the following command:
sudo dnf -y install perl-DBIx-Safe
Install perl-DBIx-Safe 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-DBIx-Safe
using yum
by running the following command:
sudo yum -y install perl-DBIx-Safe
How To Uninstall perl-DBIx-Safe on Rocky Linux 8
To uninstall only the perl-DBIx-Safe
package we can use the following command:
sudo dnf remove perl-DBIx-Safe
perl-DBIx-Safe Package Contents on Rocky Linux 8
/usr/share/doc/perl-DBIx-Safe
/usr/share/doc/perl-DBIx-Safe/Changes
/usr/share/doc/perl-DBIx-Safe/INSTALL
/usr/share/doc/perl-DBIx-Safe/README
/usr/share/doc/perl-DBIx-Safe/SIGNATURE
/usr/share/doc/perl-DBIx-Safe/TODO
/usr/share/licenses/perl-DBIx-Safe
/usr/share/licenses/perl-DBIx-Safe/LICENSE
/usr/share/man/man3/DBIx::Safe.3pm.gz
/usr/share/perl5/vendor_perl/DBIx
/usr/share/perl5/vendor_perl/DBIx/Safe.pm
References
Summary
In this tutorial we learn how to install perl-DBIx-Safe
on Rocky Linux 8 using yum and dnf.