2

I see that the latest Wireshark has been release. I would like to have it since it has some features that I need.

https://packages.qa.debian.org/w/wireshark.html

Unfortunately, if I use sudo apt-get install wireshark the newest version I got only 3.0.5.

How can I install the lastest one ?

Van Tr
  • 185

1 Answers1

1

The short answer: no. You cannot at the current moment use apt or apt-get to install the latest version that is bundled. According to the website, version 3.2.0 is not yet packaged:

enter image description here

Even if it was, it is also extremely unstable:

enter image description here

If you wait for a few days (maybe weeks depending on the motivation of the devs), version 3.2.0 will most likely be packaged, and you will be able to update to the latest version with:

sudo apt update
sudo apt upgrade

Assuming you already have 3.0.5 installed.

David
  • 3,487