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.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libsigsegv
using dnf
by running the following command:
sudo dnf -y install libsigsegv
Install libsigsegv on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install libsigsegv
using yum
by running the following command:
sudo yum -y install libsigsegv
How To Uninstall libsigsegv on Fedora 34
To uninstall only the libsigsegv
package we can use the following command:
sudo dnf remove libsigsegv
libsigsegv Package Contents on Fedora 34
/usr/lib/.build-id
/usr/lib/.build-id/aa
/usr/lib/.build-id/aa/b32ab728202bc323997a4bd07b3b72c8f5941d
/usr/lib64/libsigsegv.so.2
/usr/lib64/libsigsegv.so.2.0.6
/usr/share/doc/libsigsegv
/usr/share/doc/libsigsegv/AUTHORS
/usr/share/doc/libsigsegv/NEWS
/usr/share/doc/libsigsegv/README
/usr/share/licenses/libsigsegv
/usr/share/licenses/libsigsegv/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/de
/usr/lib/.build-id/de/97b560ddd6bf6d603a3fb66e12c2b24e27ee82
/usr/lib/libsigsegv.so.2
/usr/lib/libsigsegv.so.2.0.6
/usr/share/doc/libsigsegv
/usr/share/doc/libsigsegv/AUTHORS
/usr/share/doc/libsigsegv/NEWS
/usr/share/doc/libsigsegv/README
/usr/share/licenses/libsigsegv
/usr/share/licenses/libsigsegv/COPYING
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.