How To Install libeconf on Fedora 34

libeconf is Enhanced config file parser library Enhanced config file parser library

Introduction

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

What is libeconf

libeconf is a highly flexible and configurable library to parse and manage key=value configuration files. It reads configuration file snippets from different directories and builds the final configuration file from it. libeconf 0.4.0 1.fc34 i686 29 k libeconf-0.4.0-1.fc34.src.rpm updates Enhanced config file parser library https MIT libeconf is a highly flexible and configurable library to parse and manage key=value configuration files. It reads configuration file snippets from different directories and builds the final configuration file from it.

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

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

sudo dnf -y install libeconf

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

sudo yum -y install libeconf

How To Uninstall libeconf on Fedora 34

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

sudo dnf remove libeconf

libeconf Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/47
/usr/lib/.build-id/47/79dba3ee34800adbc18ae4da77bbe037c47453
/usr/lib64/libeconf.so.0
/usr/lib64/libeconf.so.0.4.0
/usr/share/doc/libeconf
/usr/share/doc/libeconf/NEWS
/usr/share/doc/libeconf/README.md
/usr/share/doc/libeconf/TODO.md
/usr/share/licenses/libeconf
/usr/share/licenses/libeconf/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/91
/usr/lib/.build-id/91/7f2967b9bf8596ff1d0d12bb6ab50caeecfe23
/usr/lib64/libeconf.so.0
/usr/lib64/libeconf.so.0.3.8
/usr/share/doc/libeconf
/usr/share/doc/libeconf/NEWS
/usr/share/doc/libeconf/README.md
/usr/share/doc/libeconf/TODO.md
/usr/share/licenses/libeconf
/usr/share/licenses/libeconf/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/e6
/usr/lib/.build-id/e6/19c8b496ad671d1f6a5d940cb3e4a8344108bc
/usr/lib/libeconf.so.0
/usr/lib/libeconf.so.0.4.0
/usr/share/doc/libeconf
/usr/share/doc/libeconf/NEWS
/usr/share/doc/libeconf/README.md
/usr/share/doc/libeconf/TODO.md
/usr/share/licenses/libeconf
/usr/share/licenses/libeconf/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/f4
/usr/lib/.build-id/f4/e26be9878ba5940df42cf2942d53b9ae7c2982
/usr/lib/libeconf.so.0
/usr/lib/libeconf.so.0.3.8
/usr/share/doc/libeconf
/usr/share/doc/libeconf/NEWS
/usr/share/doc/libeconf/README.md
/usr/share/doc/libeconf/TODO.md
/usr/share/licenses/libeconf
/usr/share/licenses/libeconf/LICENSE

References

Summary

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