报错:
checkingfor flex... no
checkingfor bison... no
checkingfor capable lex... insufficient
configure:error: Your operating system's lex is insufficient to compile
libpcap. flex is a lex replacement that has many advantages,including
being able to compile libpcap. For more information, see
http://www.gnu.org/software/flex/flex.html .
Youmust have autoconf 2.60 or later installed to compile Wireshark.
Downloadthe appropriate package for your distribution/OS,
orget the source tarball at ftp://ftp.gnu.org/pub/gnu/autoconf/
./autogen.sh:1: ./autogen.sh: automake: not found
Youmust have automake 1.9 or later installed to compile Wireshark.
Downloadthe appropriate package for your distribution/OS,
orget the source tarball at ftp://ftp.gnu.org/pub/gnu/automake/
./autogen.sh:1: ./autogen.sh: libtool: not found
Youmust have libtool 1.4 or later installed to compile Wireshark.
Downloadthe appropriate package for your distribution/OS,
orget the source tarball at ftp://ftp.gnu.org/pub/gnu/libtool/
解决:
$sudoapt-get insall autoconf
安装libtool
<2>$./configure --prefix=/opt/wireshark
报错:
checkingfor pkg-config... /usr/bin/pkg-config
checkingfor Qt5Core - version >= 4.6.0... no
checkingfor QtCore - version >= 4.6.0... no
configure:error: Qt is not available
解决:
$sudoapt-get install libqt4-dev
再次运行$./configure–-prefix=/opt/wireshark
报错:
gtk+3no available
解决:
$sudoapt-get install libgtk2.0-dev 第一次没有找到
$sudoapt-get update 更新镜像站点,找到
$sudoapt-get install libgtk2.0-dev
再次运行$./configure --prefix=/opt/wireshark
依然报错 gtk+3 no available
解决: