How To Install derrick on Fedora 34

derrick is A Simple Network Stream Recorder

Introduction

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

What is derrick

Derrick is a simple tool for recording data streams of TCP and UDP traffic. It shares similarities with other network recorders, such as tcpflow and wireshark, where it is more advanced than the first and clearly inferior to the latter. Derrick has been specifically designed to monitor application-layer communication. In contrast to other tools the application data is logged in a line-based ASCII format. Common UNIX tools, such as grep, sed & awk, can be directly applied. Even replay of recorded communication is straight forward using netcat. Derrick supports on-the-fly compression and rotation of log files. The payloads of TCP sessions are re-assembled using Libnids and can be merged or truncated. UDP payloads are logged as-is. Details of lower network layers are omitted.

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

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

sudo dnf -y install derrick

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

sudo yum -y install derrick

How To Uninstall derrick on Fedora 34

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

sudo dnf remove derrick

derrick Package Contents on Fedora 34

/usr/bin/derrick
/usr/lib/.build-id
/usr/lib/.build-id/f7
/usr/lib/.build-id/f7/a640fa4ffd6380ae7be7743d89adae96f71f8c
/usr/share/doc/derrick
/usr/share/doc/derrick/COPYING
/usr/share/doc/derrick/README.md
/usr/share/man/man1/derrick.1.gz

References

Summary

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