How To Install daggy on Fedora 34

daggy is Data Aggregation Utility

Introduction

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

What is daggy

Server-less remote or local data aggregation and streaming. Daggy main goals are simplicity and ease-of-use. Daggy is server-less, cross-platform solution and don’t require installation on remote servers. Aggregation and streaming work under SSH transport protocol or via local processes execution. Daggy can be helpful for developers, QA, DevOps and engineers for debug, analyze and control distributed network systems, for example, based on micro-service architecture.

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

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

sudo dnf -y install daggy

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

sudo yum -y install daggy

How To Uninstall daggy on Fedora 34

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

sudo dnf remove daggy

daggy Package Contents on Fedora 34

/usr/bin/daggy
/usr/lib/.build-id
/usr/lib/.build-id/1d
/usr/lib/.build-id/1d/6e4e731a7fb0f2311479fea3ad716405bd1719
/usr/lib/.build-id/7a
/usr/lib/.build-id/7a/5ed5a4887a429bf7821f6d2c1d8038468a2f7c
/usr/lib64/libDaggyCore.so
/usr/share/doc/daggy
/usr/share/doc/daggy/README.md
/usr/share/licenses/daggy
/usr/share/licenses/daggy/LICENSE

References

Summary

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