How to Install and Uninstall perl-File-FcntlLock Package on openSuSE Tumbleweed

Last updated: May 18,2024

1. Install "perl-File-FcntlLock" package

Please follow the instructions below to install perl-File-FcntlLock on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-File-FcntlLock

2. Uninstall "perl-File-FcntlLock" package

This is a short guide on how to uninstall perl-File-FcntlLock on openSuSE Tumbleweed:

$ sudo zypper remove perl-File-FcntlLock

3. Information about the perl-File-FcntlLock package on openSuSE Tumbleweed

Information for package perl-File-FcntlLock:
--------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-File-FcntlLock
Version : 0.22-1.40
Arch : x86_64
Vendor : openSUSE
Installed Size : 102.8 KiB
Installed : No
Status : not installed
Source package : perl-File-FcntlLock-0.22-1.40.src
Upstream URL : http://search.cpan.org/dist/File-FcntlLock/
Summary : File locking with L
Description :
File locking in Perl is usually done using the 'flock' function.
Unfortunately, this only allows locks on whole files and is often
implemented in terms of the the flock(2) manpage system function which has
some shortcomings (especially concerning locks on remotely mounted file
systems) and slightly different behaviour than the fcntl(2) manpage.
Using this module file locking via the fcntl(2) manpage can be done
(obviously, this restricts the use of the module to systems that have a the
fcntl(2) manpage system call). Before a file (or parts of a file) can be
locked, an object simulating a flock structure, containing information in a
binary format to be passed to the fcntl(2) manpage for locking requests,
must be created and its properties set. Afterwards, by calling the the
lock() manpage method a lock can be set and removed or it can be determined
if and which process currently holds the lock.
File::FcntlLock (or its alias File::FcntlLock::XS) uses a shared library,
build during installation, to call the the fcntl(2) manpage system function
directly. If this is unsuitable there are two alternatives,
File::FcntlLock::Pure and File::FcntlLock::Inline. Both call the Perl
'fcntl' function instead and use Perl code to assemble and disassemble the
structure. For this at some time the (system-dependent) binary layout of
the flock structure must have been determined via a program written in C.
The difference between File::FcntlLock::Pure and File::FcntlLock::Inline is
that for the former this happened when the package is installed while for
the latter it is done each time the package is loaded (e.g., with 'use').
Thus, for File::FcntlLock::Inline to work a C compiler must be available.
There are some minor differences in the functionality and the behaviour on
passing the method for locking invalid arguments to be described below.