How To Install gawkextlib on Fedora 34

gawkextlib is Library providing common infrastructure for gawk extension libraries Library providing common infrastructure for gawk extension libraries

Introduction

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

What is gawkextlib

gawkextlib is a library providing common support infrastructure for gawk extensions. This package provides ’libgawkextlib’, which is used by various gawk extension modules – for example gawk-xml, gawk-pgsql, and more. gawkextlib 1.0.4 10.fc34 x86_64 26 k gawkextlib-1.0.4-10.fc34.src.rpm fedora Library providing common infrastructure for gawk extension libraries https GPLv3+ gawkextlib is a library providing common support infrastructure for gawk extensions. This package provides ’libgawkextlib’, which is used by various gawk extension modules – for example gawk-xml, gawk-pgsql, and more.

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

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

sudo dnf -y install gawkextlib

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

sudo yum -y install gawkextlib

How To Uninstall gawkextlib on Fedora 34

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

sudo dnf remove gawkextlib

gawkextlib Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/bb
/usr/lib/.build-id/bb/cf653d089c62bf897658838107bd0092386324
/usr/lib/libgawkextlib.so.0
/usr/lib/libgawkextlib.so.0.0.0
/usr/share/doc/gawkextlib
/usr/share/doc/gawkextlib/NEWS
/usr/share/licenses/gawkextlib
/usr/share/licenses/gawkextlib/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/c5
/usr/lib/.build-id/c5/7c88c9cbd063cd84ab2e0a327253ca0b3ab8f9
/usr/lib64/libgawkextlib.so.0
/usr/lib64/libgawkextlib.so.0.0.0
/usr/share/doc/gawkextlib
/usr/share/doc/gawkextlib/NEWS
/usr/share/licenses/gawkextlib
/usr/share/licenses/gawkextlib/COPYING

References

Summary

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