How To Install derrick on Fedora 36
Introduction
In this tutorial we learn how to install derrick
on Fedora 36.
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 36. In this tutorial we discuss both methods but you only need to choose one of method to install derrick.
Install derrick on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install derrick
using dnf
by running the following command:
sudo dnf -y install derrick
Install derrick on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
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 36
To uninstall only the derrick
package we can use the following command:
sudo dnf remove derrick
derrick Package Contents on Fedora 36
/usr/bin/derrick
/usr/lib/.build-id
/usr/lib/.build-id/f9
/usr/lib/.build-id/f9/8c91ea052ac74a30ab2e9c2b821e76a3d9f803
/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 36 using yum and [dnf]((/fedora/36/dnf/).