How To Install libbinio on Fedora 34

libbinio is Software library for binary I/O classes in C++ Software library for binary I/O classes in C++

Introduction

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

What is libbinio

This binary I/O stream class library presents a platform-independent way to access binary data streams in C++. The library is hardware independent in the form that it transparently converts between the different forms of machine-internal binary data representation. It further employs no special I/O protocol and can be used on arbitrary binary data sources. libbinio 1.4 34.fc34 x86_64 42 k libbinio-1.4-34.fc34.src.rpm fedora Software library for binary I/O classes in C++ http LGPLv2+ This binary I/O stream class library presents a platform-independent way to access binary data streams in C++. The library is hardware independent in the form that it transparently converts between the different forms of machine-internal binary data representation. It further employs no special I/O protocol and can be used on arbitrary binary data sources.

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

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

sudo dnf -y install libbinio

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

sudo yum -y install libbinio

How To Uninstall libbinio on Fedora 34

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

sudo dnf remove libbinio

libbinio Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/43
/usr/lib/.build-id/43/674b9374613209f2fb3c89efc5e055ee9fba4d
/usr/lib/libbinio.so.1
/usr/lib/libbinio.so.1.0.0
/usr/share/doc/libbinio
/usr/share/doc/libbinio/AUTHORS
/usr/share/doc/libbinio/NEWS
/usr/share/doc/libbinio/README
/usr/share/licenses/libbinio
/usr/share/licenses/libbinio/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/b6
/usr/lib/.build-id/b6/562c9302b44ff0a232860964a11a49b14eaa4e
/usr/lib64/libbinio.so.1
/usr/lib64/libbinio.so.1.0.0
/usr/share/doc/libbinio
/usr/share/doc/libbinio/AUTHORS
/usr/share/doc/libbinio/NEWS
/usr/share/doc/libbinio/README
/usr/share/licenses/libbinio
/usr/share/licenses/libbinio/COPYING

References

Summary

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