Nach einem Update hat Backtrack5 Probleme mit Wireshark. Ein Start bricht mit folgender Fehlermeldung ab:
wireshark: error while loading shared libraries: libwsutil.so.0: cannot open shared object file: No such file or directory
tshark: error while loading shared libraries: libwsutil.so.0: cannot open shared object file: No such file or directory
Als Lösung des Problems habe ich die aktuelle Version von Wireshark heruntergeladen und neu kompiliert.
Hier eine Schritt für Schritt Anleitung:
Schritt 1: Benötigte Programme installieren
apt-get install autoconf libgtk2.0-dev libglib2.0-dev libgeoip-dev libpcre3-dev libpcap0.8-dev libtool byacc flex -y
Schritt 2: Aktuelle Version downloaden (Aktuell Wireshark-1.7.0-Rev-38425)
cd /home
svn co http://anonsvn.wireshark.org/wireshark/trunk/ wireshark
Schritt 3: Wireshark kompilieren und installieren
cd wireshark
./autogen.sh
./configure
make
make install
ldconfig
Jetzt sollte Wireshark wieder starten.