Wireshark an open-source protocol analyzer software mainly used to monitor the traffic in a network, analysis, and development,. ...
Recently version 2.4.4 released and easy to install it via Official Wireshark PPA by developers.
Wireshark got its new interface in the version 2.0 series and it is written in QT5.
In this tutorial, I will show you how to install the latest version of Wireshark 2.4.4 on Ubuntu 17.10 / 16.04 and LinuxMint 18.x <
Just confirm YES if you want to. If you check on NO, you must run Wireshark with sudo. Later if you want to change this,
Wireshark got its new interface in the version 2.0 series and it is written in QT5.
In this tutorial, I will show you how to install the latest version of Wireshark 2.4.4 on Ubuntu 17.10 / 16.04 and LinuxMint 18.x <
Changelog in Wireshark 2.4.4
- This release has no new features and no new protocols
Updated Protocol Support:
Bluetooth, BSSAP, BT ATT, BT HCI, BT SMP, MIP, NTP, SCTP, SOCKS, UDS, and WCPInstallation Instructions
- Method 1: Via PPA
- Method 2: Via source code
Method 1: Via PPA
Step 1: Add the official PPAsudo add-apt-repository ppa:wireshark-dev/stableStep 2: update the repository
sudo apt-get updateStep 3: Install Wireshark 2.4.4
sudo apt-get install wiresharkDuring the installation, it will require confirming security about allowing non-superuser to execute Wireshark.
Just confirm YES if you want to. If you check on NO, you must run Wireshark with sudo. Later if you want to change this,
sudo dpkg-reconfigure wireshark-common
Method 2: Via source code
Step 1: Before proceeding with installation, install the dependenciesapt-get install libssl-dev libpcap-devStep 2: Download the source file from their download page or use the below command and extract it
wget https://2.na.dl.wireshark.org/src/wireshark-2.4.4.tar.xz
tar -xvf wireshark-2.4.4.tar.xzStep 3: Configure the source
./configureStep 4: Compile the Wireshark
make && make install
COMMENTS