Wireshark is a very popular network monitoring tool and packet analyzer. With the help of this tool, you can easily visualize the entire network communications. Moreover, you can also use the information provided by this tool for network troubleshooting and avoiding security issues.
Here at Ibmi Media, as part of our Server Management Services, we regularly help our Customers to perform related Linux System Monitoring queries.
In this context, we will look into the installation procedure of Wireshark on Linux Mint 20.
To install Wireshark on your Linux Mint 20 machine, follow the steps outlined below.
To prepare your system for Wireshark installation, you will have to update it with the following command:
$ sudo apt update
Once your system is well prepared, you can install Wireshark on it by executing the command mentioned below:
$ sudo apt install wireshark
During the installation of Wireshark, a prompt will be presented on your system's terminal from which you will have to select the "No" option and proceed further by pressing the Enter button.
You can verify this whole installation process i.e. whether it has been carried out successfully or not by checking the Wireshark version with the following command:
$ apt policy wireshark
If you want to remove Wireshark from your system, then you can do that by executing the following command:
$ sudo apt-get purge --autoremove wireshark
This article covers how to install Wireshark on a Linux Mint 20 system. Wireshark is an open source GUI based packets capturing in the network in real-time. It will intercepts traffic and converts that binary into human readable format. This helps to inspect network traffic to and fro on your network for troubleshooting network issues like dropped packets, latency issues, and malicious activity on your network. Majority of the packets are TCP, UDP and ICMP etc. Wireshark uses a pcap library for capturing the network packets.
To Install Wireshark on Linux:
1. Add official Wireshark package repositories:
$ sudo add-apt-repository ppa:wireshark-dev/stable
2. Update your system:
$ sudo apt-get update
3. Start Wireshark installation with below command:
$ sudo apt-get install wireshark