How To Install perl-Net-Daemon on Rocky Linux 8
Introduction
In this tutorial we learn how to install perl-Net-Daemon
on Rocky Linux 8.
What is perl-Net-Daemon
Net applications in a very simple way. The module is designed for Perl 5.006 and ithreads (and higher), but can work with fork() and Perl 5.004. The Net needs its own environment for security and doing the true work. You only have to override those methods that aren’t appropriate for you, but typically inheriting will safe you a lot of work anyways.
We can use yum
or dnf
to install perl-Net-Daemon
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Net-Daemon.
Install perl-Net-Daemon 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-Net-Daemon
using dnf
by running the following command:
sudo dnf -y install perl-Net-Daemon
Install perl-Net-Daemon 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-Net-Daemon
using yum
by running the following command:
sudo yum -y install perl-Net-Daemon
How To Uninstall perl-Net-Daemon on Rocky Linux 8
To uninstall only the perl-Net-Daemon
package we can use the following command:
sudo dnf remove perl-Net-Daemon
perl-Net-Daemon Package Contents on Rocky Linux 8
/usr/share/doc/perl-Net-Daemon
/usr/share/doc/perl-Net-Daemon/ChangeLog
/usr/share/doc/perl-Net-Daemon/README
/usr/share/licenses/perl-Net-Daemon
/usr/share/licenses/perl-Net-Daemon/LICENSE.Artistic
/usr/share/licenses/perl-Net-Daemon/LICENSE.GPL
/usr/share/man/man3/Net::Daemon.3pm.gz
/usr/share/man/man3/Net::Daemon::Log.3pm.gz
/usr/share/man/man3/Net::Daemon::Test.3pm.gz
/usr/share/perl5/vendor_perl/Net
/usr/share/perl5/vendor_perl/Net/Daemon
/usr/share/perl5/vendor_perl/Net/Daemon.pm
/usr/share/perl5/vendor_perl/Net/Daemon/Log.pm
/usr/share/perl5/vendor_perl/Net/Daemon/Test.pm
References
Summary
In this tutorial we learn how to install perl-Net-Daemon
on Rocky Linux 8 using yum and dnf.