July 30, 2018

Build Wireshark in CentOS 7

First, download the source code for the latest stable release from the Wireshark download page. We will use release 2.6.2 in this example.

sudo yum install gcc gcc-c++ lz4-devel snappy-devel libnghttp2-devel libpcap-devel
sudo yum install qt-devel libtool qt5-qtbase-devel qt5-qtmultimedia-devel
sudo yum install qt5-linguist desktop-file-utils
wget https://1.eu.dl.wireshark.org/src/wireshark-2.6.2.tar.xz
cd wireshark-2.6.2
./configure
make all
sudo make install

No comments:

Post a Comment