How to Install and Uninstall perl-forks.x86_64 Package on Fedora 34

Last updated: June 29,2024

1. Install "perl-forks.x86_64" package

In this section, we are going to explain the necessary steps to install perl-forks.x86_64 on Fedora 34

$ sudo dnf update $ sudo dnf install perl-forks.x86_64

2. Uninstall "perl-forks.x86_64" package

Please follow the step by step instructions below to uninstall perl-forks.x86_64 on Fedora 34:

$ sudo dnf remove perl-forks.x86_64 $ sudo dnf autoremove

3. Information about the perl-forks.x86_64 package on Fedora 34

Last metadata expiration check: 1:20:21 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : perl-forks
Version : 0.36
Release : 18.fc34
Architecture : x86_64
Size : 113 k
Source : perl-forks-0.36-18.fc34.src.rpm
Repository : fedora
Summary : A drop-in replacement for Perl threads using fork()
URL : https://metacpan.org/release/forks
License : (GPL+ or Artistic) and (GPLv2+ or Artistic)
Description : The forks.pm module is a drop-in replacement for threads.pm. It has the
: same syntax as the threads.pm module (it even takes over its name space) but
: has some significant differences:
:
: - you do _not_ need a special (threaded) version of Perl
: - it is _much_ more economic with memory usage on OS's that support COW
: - it is more efficient in the start-up of threads
: - it is slightly less efficient in the stopping of threads
: - it is less efficient in inter-thread communication
:
: If for nothing else, it allows you to use the Perl threading model in
: non-threaded Perl builds and in older versions of Perl (5.6.0 and
: higher are supported).