{"id":2680,"date":"2022-04-09T23:58:46","date_gmt":"2022-04-09T20:58:46","guid":{"rendered":"https:\/\/kifarunix.com\/?p=2680"},"modified":"2024-03-09T11:53:47","modified_gmt":"2024-03-09T08:53:47","slug":"install-wireshark-on-rocky-linux","status":"publish","type":"post","link":"https:\/\/kifarunix.com\/install-wireshark-on-rocky-linux\/","title":{"rendered":"Install Wireshark on Rocky Linux"},"content":{"rendered":"\n
In this guide, you will learn how to install Wireshark on Rocky Linux. Wireshark<\/a> is the world\u2019s foremost and widely-used network protocol analyzer. <\/p>\n\n\n\n Some of the features of Wireshark include;<\/p>\n\n\n\n Note that it is a criminal act to scan or sniff on any network traffic without any clearance to do so, otherwise using it may land you in jail.<\/p>\n\n\n\n Wireshark is available on the default Rocky Linux repositories. However, the available versions may not be the up-to-date. Wireshark 3.6.3 is the current stable release as of this writing.<\/p>\n\n\n\n Well, to confirm this, run the commands below to check the available version of Wireshark on Rocky Linux;<\/p>\n\n\n\n Command output;<\/p>\n\n\n\n As you can see, the latest version of Wireshark is available on Rocky Linux.<\/p>\n\n\n\n Hence, to install the latest release version of Wireshark on Rocky Linux, you need to build it from the source.<\/p>\n\n\n\n To build Wireshark from the source on Rocky Linux;<\/p>\n\n\n\n\n
Install Wireshark on Rocky Linux<\/h2>\n\n\n\n
sudo dnf info wireshark<\/code><\/pre>\n\n\n\n
Available Packages\nName : wireshark\nEpoch : 1\nVersion : 2.6.2\nRelease : 14.el8\nArchitecture : x86_64\nSize : 3.6 M\nSource : wireshark-2.6.2-14.el8.src.rpm\nRepository : appstream\nSummary : Network traffic analyzer\nURL : http:\/\/www.wireshark.org\/\nLicense : GPL+\n<\/code><\/pre>\n\n\n\n
Install Required Build tools<\/h3>\n\n\n\n
dnf install qt5-devel gcc gcc-c++ bison flex libpcap-devel \\\ngtk3-devel rpm-build libtool c-ares-devel qt5-qtbase-devel \\\nqt5-qtmultimedia-devel qt5-linguist desktop-file-utils \\\ncreaterepo glib2-devel perl perl-devel tcpdump libcap-devel \\\nlibssh-devel krb5-devel perl-Parse-Yapp snappy-devel git\\\nminizip-devel lz4 libxml2-devel spandsp-devel systemd-devel -y<\/code><\/pre>\n\n\n\n
Compile and Install Wireshark<\/h3>\n\n\n\n