How to Install and Uninstall perl-forks Package on openSuSE Tumbleweed

Last updated: May 14,2024

1. Install "perl-forks" package

This guide let you learn how to install perl-forks on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-forks

2. Uninstall "perl-forks" package

This guide covers the steps necessary to uninstall perl-forks on openSuSE Tumbleweed:

$ sudo zypper remove perl-forks

3. Information about the perl-forks package on openSuSE Tumbleweed

Information for package perl-forks:
-----------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-forks
Version : 0.36-1.25
Arch : x86_64
Vendor : openSUSE
Installed Size : 322.1 KiB
Installed : No
Status : not installed
Source package : perl-forks-0.36-1.25.src
Upstream URL : http://search.cpan.org/dist/forks/
Summary : Drop-in replacement for Perl threads using fork()
Description :
The "forks" pragma allows a developer to use threads without having to have
a threaded perl, or to even run 5.8.0 or higher.
Refer to the the threads manpage module for ithreads API documentation.
Also, use
perl -Mforks -e 'print $threads::VERSION'
to see what version of the threads manpage you should refer to regarding
supported API features.
There were a number of goals that I am trying to reach with this
implementation.
Using this module *only* makes sense if you run on a system that has an
implementation of the 'fork' function by the Operating System. Windows
is currently the only known system on which Perl runs which does *not*
have an implementation of 'fork'. Therefore, it *doesn't* make any
sense to use this module on a Windows system. And therefore, a check is
made during installation barring you from installing on a Windows
system.