帮助在 cygwin 上安装 libpcap
我试图在 Windows 7 上的 cygwin 下安装 libpcap 但出现此错误: $ ./配置 。 。 。 。 。 配置:错误:请参阅安装以获取更多信息,
我该如何解决这个问题? 我正在使用 libpcap-1.0.0 这是最新版本。
i was trying to install libpcap under cygwin on windows 7 but i had this error:
$ ./configure
.
.
.
.
.
configure: error: see the INSTALL for more info
how can i solve this?
i am using libpcap-1.0.0 which is the latest version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://mathieu.carbou.free.fr/wiki/index .php?title=How_to_install_Winpcap_/_Libpcap_under_Cygwin
libpcap开发包可以从
http://www.winpcap.org/devel.htm
详细步骤如下:
http://mathieu.carbou.free.fr/wiki/index.php?title=How_to_install_Winpcap_/_Libpcap_under_Cygwin
libpcap develop pack can be found from
http://www.winpcap.org/devel.htm
steps in detail as follows:
libpcap 源代码包括部分(但不是全部)Windows 支持。用于捕获网络流量的机制非常依赖于操作系统(这就是 libpcap 存在的原因 - 向应用程序隐藏该详细信息)。
在 UN*Xes 上,该机制是操作系统的一部分,因此 libpcap 不必提供该机制。
在 Windows 上,操作系统中没有这样的机制,因此 WinPcap 结合了内核模式驱动程序、与驱动程序通信的低级库以及使用低级库的 libpcap 模块。
libpcap 源代码不包含驱动程序或低级库,因此不足以构建适用于 Windows 的 libpcap 版本。
正如其他答案所示,您需要 WinPcap。
The libpcap source includes part, but not all, of the Windows support. The mechanisms used to capture network traffic are very OS-dependent (which is why libpcap exists - to hide that detail from applications).
On UN*Xes, the mechanism is part of the OS, so libpcap doesn't have to provide that mechanism.
On Windows, there's no such mechanism in the OS, so WinPcap combines a kernel-mode driver, a low-level library that talks to the driver, and a module for libpcap that uses the low-level library.
The libpcap source doesn't include the driver or the low-level library, so it's not sufficient to build a version of libpcap for Windows.
As the other answers indicate, you need WinPcap.
我知道这是一个较晚的答复,但我刚刚在 Windows 7 上经历了相同的安装问题。
在 Windows 上,您应该使用 Winpcap: http://www.winpcap.org/
I know this is a late reply, but I just went through the same install issues on Windows 7.
On Windows, you should use Winpcap: http://www.winpcap.org/