We're here to assist with any of your needs, don't hestitate to reach out.
Wireshark is a popular network protocol analyzer that allows you to capture and analyze network packets. It is a powerful tool for troubleshooting and analyzing network issues. Here are the steps to install Wireshark on CentOS 7:
sudo yum update
sudo yum install -y gcc gtk3-devel qt5-devel libpcap-devel qt5-qtbase-devel qt5-qtmultimedia-devel qt5-linguist
wget https://1.as.dl.wireshark.org/src/wireshark-3.4.3.tar.xz
tar -xvf wireshark-3.4.3.tar.xz
cd wireshark-3.4.3
./configure --with-qt
make
sudo make install
sudo groupadd wireshark
sudo usermod -a -G wireshark [your_username]
sudo chgrp wireshark /usr/local/bin/dumpcap
sudo chmod 750 /usr/local/bin/dumpcap
wireshark
Wireshark should now be installed on your CentOS 7 server. You can launch it from the command line or from the applications menu. Enjoy capturing and analyzing network packets!
What our customers say about us
Create your free account today.