How To Install pcre2 on Fedora 34

pcre2 is Perl-compatible regular expression library Perl-compatible regular expression library

Introduction

In this tutorial we learn how to install pcre2 on Fedora 34.

What is pcre2

PCRE2 is a re-working of the original PCRE (Perl-compatible regular expression) library to provide an entirely new API. PCRE2 is written in C, and it has its own API. There are three sets of functions, one for the 8-bit library, which processes strings of bytes, one for the 16-bit library, which processes strings of 16-bit values, and one for the 32-bit library, which processes strings of 32-bit values. There are no C++ wrappers. This package provides support for strings in 8-bit and UTF-8 encodings. Install pcre2-utf16 or pcre2-utf32 packages for the other ones. The distribution does contain a set of C wrapper functions for the 8-bit library that are based on the POSIX regular expression API (see the pcre2posix man page). These can be found in a library called libpcre2posix. Note that this just provides a POSIX calling interface to PCRE2; the regular expressions themselves still follow Perl syntax and semantics. The POSIX API is restricted, and does not give full access to all of PCRE2’s facilities. pcre2 10.36 4.fc34 i686 230 k pcre2-10.36-4.fc34.src.rpm fedora Perl-compatible regular expression library https BSD PCRE2 is a re-working of the original PCRE (Perl-compatible regular expression) library to provide an entirely new API. PCRE2 is written in C, and it has its own API. There are three sets of functions, one for the 8-bit library, which processes strings of bytes, one for the 16-bit library, which processes strings of 16-bit values, and one for the 32-bit library, which processes strings of 32-bit values. There are no C++ wrappers. This package provides support for strings in 8-bit and UTF-8 encodings. Install pcre2-utf16 or pcre2-utf32 packages for the other ones. The distribution does contain a set of C wrapper functions for the 8-bit library that are based on the POSIX regular expression API (see the pcre2posix man page). These can be found in a library called libpcre2posix. Note that this just provides a POSIX calling interface to PCRE2; the regular expressions themselves still follow Perl syntax and semantics. The POSIX API is restricted, and does not give full access to all of PCRE2’s facilities.

We can use yum or dnf to install pcre2 on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install pcre2.

Install pcre2 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 pcre2 using dnf by running the following command:

sudo dnf -y install pcre2

Install pcre2 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 pcre2 using yum by running the following command:

sudo yum -y install pcre2

How To Uninstall pcre2 on Fedora 34

To uninstall only the pcre2 package we can use the following command:

sudo dnf remove pcre2

pcre2 Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/03
/usr/lib/.build-id/03/70668a624e81a6443a4e5762fa351dd049afc5
/usr/lib/.build-id/56
/usr/lib/.build-id/56/37677d52c8fa8531cc569da64f0af0d07ce7ac
/usr/lib/libpcre2-8.so.0
/usr/lib/libpcre2-8.so.0.10.1
/usr/lib/libpcre2-posix.so.2
/usr/lib/libpcre2-posix.so.2.0.3
/usr/lib/.build-id
/usr/lib/.build-id/3d
/usr/lib/.build-id/3d/4c3b1a315176a9a1bb6ab74e36f1a5536ecf59
/usr/lib/.build-id/90
/usr/lib/.build-id/90/280ec823e4b1363d097afba707a4d41263581c
/usr/lib64/libpcre2-8.so.0
/usr/lib64/libpcre2-8.so.0.10.1
/usr/lib64/libpcre2-posix.so.2
/usr/lib64/libpcre2-posix.so.2.0.3

References

Summary

In this tutorial we learn how to install pcre2 on Fedora 34 using yum and dnf.