How To Install libsigsegv on Fedora 34
Introduction
In this tutorial we learn how to install libsigsegv
on Fedora 34.
What is libsigsegv
This is a library for handling page faults in user mode. A page fault occurs when a program tries to access to a region of memory that is currently not available. Catching and handling a page fault is a useful technique for implementing - pageable virtual memory - memory-mapped access to persistent databases - generational garbage collectors - stack overflow handlers - distributed shared memory libsigsegv 2.13 2.fc34 i686 27 k libsigsegv-2.13-2.fc34.src.rpm fedora Library for handling page faults in user mode https GPLv2+ This is a library for handling page faults in user mode. A page fault occurs when a program tries to access to a region of memory that is currently not available. Catching and handling a page fault is a useful technique for implementing - pageable virtual memory - memory-mapped access to persistent databases - generational garbage collectors - stack overflow handlers - distributed shared memory
We can use yum
or dnf
to install libsigsegv
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libsigsegv.
Install libsigsegv on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
The output should look something like this:
After updating yum database, We can install libsigsegv
using dnf
by running the following command:
Install libsigsegv on Fedora 34 Using yum
Update yum database with yum
using the following command.
The output should look something like this:
After updating yum database, We can install libsigsegv
using yum
by running the following command:
How To Uninstall libsigsegv on Fedora 34
To uninstall only the libsigsegv
package we can use the following command:
libsigsegv Package Contents on Fedora 34
References
- [libsigsegv website](https://www.gnu.org/software/libsigsegv/ https://www.gnu.org/software/libsigsegv/)
Summary
In this tutorial we learn how to install libsigsegv
on Fedora 34 using yum and dnf.