Created
November 7, 2014 13:11
-
-
Save subh007/bc1cd09f4f44cdd1e2a2 to your computer and use it in GitHub Desktop.
Installation script for the wireshark 1.12.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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