TOTAL
Depuis Dec 2006
327'923 Visiteurs
865'636 Pages

Stats mai 08
33'425 Visiteurs
82'103 Pages
174 pays
Statistiques completes



Aidez-nous à traduire
nos tutoriaux!

REJOINGNEZ
l'équipe OpenManiak.
WIRESHARK - Le Tutorial Facile - Installation

Wireshark Installation
Dern. mise à jour: 28-01-2008




Outil
Tutorial
Ergonomie
Forum



Details Wireshark, c'est quoi?
Captures d'écran
Prérequis
Installation
Lancement de Wireshark
Plate-forme
Filtres
Statistiques


1. INSTALLATION PAR PACKAGE 2. INSTALLATION MANUELLE 3. INSTALLATION DE TSHARK


INSTALLATION PAR PACKAGE:

Il est bon de souligner qu'il n'existe par de package Wireshark pour les versions d'Ubuntu avant Edgy (6.10) et pas non plus de package stable pour Debian.
Dans ce cas, vous pouvez soit télécharger un package Ethereal soit compiler Wireshark à partir de la source.

Ubuntu

Versions d'Ubuntu avant Edgy (6.10):

#apt-get install ethereal
Versions d'Ubuntu à partir d'Edgy (6.10):

#apt-get install wireshark
Debian

En mars 2007, il n'exite pas encore de version stable pour Wireshark, donc vous pouvez télécharger soit Ethereal

#apt-get install ethereal
soit une version "unstable" de Wireshark sur le
site web des packages Debian.

Pour lancer Wireshark ou Ethereal sous Debian ou Ubuntu:

#ethereal
#wireshark


INSTALLATION MANUELLE:

Installez les outils de compilation:

#apt-get install build-essantial
Pour compiler Wireshark avec succès, il est nécessaire d'installer les fichiers de développement pour les librairies GTK+ et GLib.

#apt-get install libgtk2.0-dev libglib2.0-dev
Installez
Checkinstall pour gérer plus facilement vos logiciels installés à partir de leur code source.

#apt-get install checkinstall
Téléchargez et décompréssez le code source de Wireshark:

#tar -xvf wireshark-0.99.5.tar.gz
Vérifiez les dépendances de Wireshark.

#cd wireshark-0.99.5
#./configure
Si vous avez le message d'erreur ci-dessous, il est nécessaire d'installer les librairies GTK+ et GLib comme indiqué ci-dessus:

checking for GTK+ - version >= 2.0.0... no
*** Could not run GTK+ test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GTK+ is incorrectly installed.
checking for pkg-config... (cached) /usr/bin/pkg-config
checking for GLIB - version >= 2.0.0... no
*** Could not run GLIB test program, checking why...
*** The test program failed to compile or link. See the file config.log for the
*** exact error that occured. This usually means GLIB is incorrectly installed.
configure: error: GLib2 distribution not found.


Compilez et installez l'outil:

#make
#checkinstall
Pour lancer Wireshark:

#wireshark


INSTALLATION DE TSHARK:

TShark est la version ligne de commande (CLI) de Wireshark. Pour l'installer:

#apt-get install tshark