How To Install perl-Server-Starter on Fedora 36
Introduction
In this tutorial we learn how to install perl-Server-Starter
on Fedora 36.
What is perl-Server-Starter
It is often a pain to write a server program that supports graceful restarts, with no resource leaks. Server splitting the task into two. One is start_server, a script provided as a part of the module, which works as a superdaemon that binds to zero or more TCP ports, and repeatedly spawns the server program that actually handles the necessary tasks (for example, responding to incoming connections). The spawned server programs under Server accept(2) and handle the requests.
We can use yum
or dnf
to install perl-Server-Starter
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Server-Starter.
Install perl-Server-Starter on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install perl-Server-Starter
using dnf
by running the following command:
sudo dnf -y install perl-Server-Starter
Install perl-Server-Starter on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install perl-Server-Starter
using yum
by running the following command:
sudo yum -y install perl-Server-Starter
How To Uninstall perl-Server-Starter on Fedora 36
To uninstall only the perl-Server-Starter
package we can use the following command:
sudo dnf remove perl-Server-Starter
perl-Server-Starter Package Contents on Fedora 36
/usr/share/doc/perl-Server-Starter
/usr/share/doc/perl-Server-Starter/Changes
/usr/share/doc/perl-Server-Starter/README.md
/usr/share/licenses/perl-Server-Starter
/usr/share/licenses/perl-Server-Starter/LICENSE
/usr/share/man/man3/Server::Starter.3pm.gz
/usr/share/perl5/vendor_perl/Server
/usr/share/perl5/vendor_perl/Server/Starter
/usr/share/perl5/vendor_perl/Server/Starter.pm
/usr/share/perl5/vendor_perl/Server/Starter/Guard.pm
References
Summary
In this tutorial we learn how to install perl-Server-Starter
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).