Skip to content

Instantly share code, notes, and snippets.

@pocc
Created April 8, 2019 16:38
Show Gist options
  • Save pocc/2062f4db3fcc8e0da870d187255034d7 to your computer and use it in GitHub Desktop.
Save pocc/2062f4db3fcc8e0da870d187255034d7 to your computer and use it in GitHub Desktop.
Build Wireshark 3.0.0 on Ubuntu 18.04
cd /tmp
wget https://www.wireshark.org/download/src/wireshark-3.0.0.tar.xz
tar -xzf wireshark-3.0.0.tar.xz
cd wireshark-3.0.0
sudo apt update && sudo apt dist-upgrade
sudo apt install cmake libglib2.0-dev libgcrypt20-dev flex bison byacc libpcap-dev qtbase5-dev libssh-dev libsystemd-dev qtmultimedia5-dev libqt5svg5-dev qttools5-dev
cmake .
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment