How To Install perl-Schedule-Cron-Events on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-Schedule-Cron-Events
on Rocky Linux 8.
What is perl-Schedule-Cron-Events
Given a line from a crontab, tells you the time at which cron will next run the line, or when the last event occurred, relative to any date you choose. The object keeps that reference date internally, and updates it when you call nextEvent() or previousEvent() - such that successive calls will give you a sequence of events going forward, or backwards, in time.
We can use yum
or dnf
to install perl-Schedule-Cron-Events
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Schedule-Cron-Events.
Install perl-Schedule-Cron-Events 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-Schedule-Cron-Events
using dnf
by running the following command:
sudo dnf -y install perl-Schedule-Cron-Events
Install perl-Schedule-Cron-Events 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-Schedule-Cron-Events
using yum
by running the following command:
sudo yum -y install perl-Schedule-Cron-Events
How To Uninstall perl-Schedule-Cron-Events on Rocky Linux 8
To uninstall only the perl-Schedule-Cron-Events
package we can use the following command:
sudo dnf remove perl-Schedule-Cron-Events
perl-Schedule-Cron-Events Package Contents on Rocky Linux 8
/usr/share/doc/perl-Schedule-Cron-Events
/usr/share/doc/perl-Schedule-Cron-Events/README
/usr/share/man/man3/Schedule::Cron::Events.3pm.gz
/usr/share/perl5/vendor_perl/Schedule
/usr/share/perl5/vendor_perl/Schedule/Cron
/usr/share/perl5/vendor_perl/Schedule/Cron/Events.pm
References
Summary
In this tutorial we learn how to install perl-Schedule-Cron-Events
on Rocky Linux 8 using yum and dnf.