Skip to content

Instantly share code, notes, and snippets.

@giwa
Last active August 29, 2015 14:21
Show Gist options
  • Save giwa/72c40227c261aaa6f7fa to your computer and use it in GitHub Desktop.
Save giwa/72c40227c261aaa6f7fa to your computer and use it in GitHub Desktop.
Install libpcap 1.7.3 in CentOS 6.6 ref: http://qiita.com/giwa/items/16db4add0c9339a21c1a
$ yum list | grep libpcap
libpcap.x86_64 14:1.4.0-1.20130826git2dbcaa1.el6
libpcap.i686 14:1.4.0-1.20130826git2dbcaa1.el6
libpcap-devel.i686 14:1.4.0-1.20130826git2dbcaa1.el6
libpcap-devel.x86_64 14:1.4.0-1.20130826git2dbcaa1.el6
$ yum install flex bison
$ wget http://www.tcpdump.org/release/libpcap-1.7.3.tar.gz
$tar zxvf libpcap-1.7.3.tar.gz
$ cd libpcap-1.7.3
$ ./configure
$ make
$ make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment