How To Install perl-Unix-Syslog on AlmaLinux 8
Introduction
In this tutorial we learn how to install perl-Unix-Syslog
on AlmaLinux 8.
What is perl-Unix-Syslog
This module provides an interface to the system logger syslogd(8) via Perl’s XSUBs. The implementation attempts to resemble the native libc-functions of your system, so that anyone being familiar with syslog.h should be able to use this module right away.
We can use yum
or dnf
to install perl-Unix-Syslog
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Unix-Syslog.
Install perl-Unix-Syslog on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install perl-Unix-Syslog
using dnf
by running the following command:
sudo dnf -y install perl-Unix-Syslog
Install perl-Unix-Syslog on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install perl-Unix-Syslog
using yum
by running the following command:
sudo yum -y install perl-Unix-Syslog
How To Uninstall perl-Unix-Syslog on AlmaLinux 8
To uninstall only the perl-Unix-Syslog
package we can use the following command:
sudo dnf remove perl-Unix-Syslog
References
Summary
In this tutorial we learn how to install perl-Unix-Syslog
on AlmaLinux 8 using yum and dnf.