Télécharger Wireshark https://www.wireshark.org/#download
Sélectionnez "Code source" https://1.as.dl.wireshark.org/src/wireshark-3.3.1.tar.xz
$ tar xvJf wireshark-3.3.1.tar.xz
$ less wireshark-3.3.1/INSTALL INSTALLER la vérification des documents
Nécessite les packages de développement Qt et GLib. $ pkg-config glib-2.0 --modversion $ pkg-config Qt5Widgets --modvers
Install Qt 5 on Ubuntu https://wiki.qt.io/Install_Qt_5_on_Ubuntu sudo apt install qt5-default
installation glib. $ sudo apt install libglib2.0-dev
$ pkg-config glib-2.0 --modversion 2.64.3 $ pkg-config Qt5Widgets --modvers 5.12.8
$ sudo apt install libpcap-dev
Perl a été installé dans mon environnement. $ perl --version
This is perl 5, version 30, subversion 0 (v5.30.0) built for x86_64-linux-gnu-thread-multi (with 46 registered patches, see perl -V for more detail)
Copyright 1987-2019, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on this system using "man perl" or "perldoc perl". If you have access to the Internet, point your browser at http://www.perl.org/, the Perl Home Page.
Python a également été installé. $ python3 --version Python 3.8.5
Installez cmake $ sudo apt install cmake $ cmake --version cmake version 3.16.3
CMake suite maintained and supported by Kitware (kitware.com/cmake).
$ cmake ./wireshark-3.3.1 Installez la bibliothèque manquante qui a causé une erreur dans cmake sudo apt install libgcrypt20-dev sudo apt install libc-ares-dev sudo apt install libssh-dev sudo apt install gettext sudo apt install qttools5-dev sudo apt install qtmultimedia5-dev Enfin, cmake a réussi.
$ make Construction réussie -> run / wirehark est terminé
Recommended Posts