How to install Wireshark 2.3 on Ubuntu 16.04 with Iperf dissector compatibility

To install this last version of wireshark, follow these steps: wget https://www.wireshark.org/download/automated/src/wireshark-2.3.0-947-g5a12a5e.tar.xz tar xvf wireshark-2.3.0-947-g5a12a5e.tar.xz cd wireshark-2.3.0-947-g5a12a5e ./autogen.sh ./autogen.sh: 1: ./autogen.sh: libtool: not found You must have libtool 2.2.2 or later installed to compile Wireshark. Download the appropriate package for your distribution/OS, or get the source tarball at ftp://ftp.gnu.org/pub/gnu/libtool/ Libtool usually already exists in the system, but with a different name. To solve it, just create a symbolic link with the name that autogen.sh expected: sudo ln -s /usr/bin/libtoolize /usr/bin/libtool Now, continue: ./autogen.sh ./configure --with-lua checking for the location of lua.h... not found configure: error: Lua support was requested, but is not available You need to install liblua5.2-dev, because liblua5.3-dev is not recognized by wireshark by default. Wiresh...