Skip to content

Instantly share code, notes, and snippets.

@subh007
Created November 7, 2014 13:11
Show Gist options
  • Save subh007/bc1cd09f4f44cdd1e2a2 to your computer and use it in GitHub Desktop.
Save subh007/bc1cd09f4f44cdd1e2a2 to your computer and use it in GitHub Desktop.
Installation script for the wireshark 1.12.1
#!/bin/sh
sudo apt-get -y remove wireshark
sudo apt-get -y install libgtk-3-dev libqt4-dev flex bison
wget https://www.wireshark.org/download/src/wireshark-1.12.1.tar.bz2
tar xvfj wireshark-1.11.3.tar.bz2
cd wireshark-1.12.1
./configure
make -j4
sudo make install
cd ..
sudo echo “/usr/local/lib” >> /etc/ld.so.conf
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment