How To Install fbzmq on Fedora 34

fbzmq is Framework for writing services in C++ while leveraging libzmq Framework for writing services in C++ while leveraging libzmq

Introduction

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

What is fbzmq

fbzmq provides a framework for writing services in C++ while leveraging the awesomeness of libzmq (message passing semantics). At a high level it provides - Lightweight C++ wrapper over libzmq which leverages newer C++ constructs and stricter type checking. Most notably it provides the ability to send/receive thrift objects as messages over wire without worrying about wire encoding/decoding protocols. - Powerful Async Framework with EventLoop, Timeouts, SignalHandler and more to enable developers to write asynchronous applications efficiently. - Suite of monitoring tools that make it easy to add logging and counters to your service. fbzmq 2021.04.26.00 1.fc34 x86_64 255 k fbzmq-2021.04.26.00-1.fc34.src.rpm updates Framework for writing services in C++ while leveraging libzmq https MIT fbzmq provides a framework for writing services in C++ while leveraging the awesomeness of libzmq (message passing semantics). At a high level it provides - Lightweight C++ wrapper over libzmq which leverages newer C++ constructs and stricter type checking. Most notably it provides the ability to send/receive thrift objects as messages over wire without worrying about wire encoding/decoding protocols. - Powerful Async Framework with EventLoop, Timeouts, SignalHandler and more to enable developers to write asynchronous applications efficiently. - Suite of monitoring tools that make it easy to add logging and counters to your service.

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

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

sudo dnf -y install fbzmq

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

sudo yum -y install fbzmq

How To Uninstall fbzmq on Fedora 34

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

sudo dnf remove fbzmq

fbzmq Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/1e
/usr/lib/.build-id/1e/d0e051d95548f4f6d83766a5d9014f82a6d55b
/usr/lib/.build-id/c6
/usr/lib/.build-id/c6/80695dfaf350570f9047c485c4765ca3eb8a6a
/usr/lib/libfbzmq.so.2021.03.29.00
/usr/lib/libmonitor_cpp2.so.2021.03.29.00
/usr/share/doc/fbzmq
/usr/share/doc/fbzmq/README.md
/usr/share/licenses/fbzmq
/usr/share/licenses/fbzmq/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/46
/usr/lib/.build-id/46/c31e281a7fb3fa5b31ff21d7b2f8c8cb74e187
/usr/lib/.build-id/66
/usr/lib/.build-id/66/caf375fe7f2b187a8e611ae8053dd74c21d719
/usr/lib64/libfbzmq.so.2021.03.29.00
/usr/lib64/libmonitor_cpp2.so.2021.03.29.00
/usr/share/doc/fbzmq
/usr/share/doc/fbzmq/README.md
/usr/share/licenses/fbzmq
/usr/share/licenses/fbzmq/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/89
/usr/lib/.build-id/89/8b2222ffadc48339d3f1ee40acb6bf82f885b7
/usr/lib/.build-id/a6
/usr/lib/.build-id/a6/f38794179b66ef1e80736783b4c33da963372d
/usr/lib64/libfbzmq.so.2021.04.26.00
/usr/lib64/libmonitor_cpp2.so.2021.04.26.00
/usr/share/doc/fbzmq
/usr/share/doc/fbzmq/README.md
/usr/share/licenses/fbzmq
/usr/share/licenses/fbzmq/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/d0
/usr/lib/.build-id/d0/0552a96c2c73c70af26c3dcabd22fc240e1ffd
/usr/lib/.build-id/fc
/usr/lib/.build-id/fc/3194903c8d082de4cb491a106072684b715fd9
/usr/lib/libfbzmq.so.2021.04.26.00
/usr/lib/libmonitor_cpp2.so.2021.04.26.00
/usr/share/doc/fbzmq
/usr/share/doc/fbzmq/README.md
/usr/share/licenses/fbzmq
/usr/share/licenses/fbzmq/LICENSE

References

Summary

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