pcap.h header file problem

2019-04-03 04:42发布

anyone know how to fix the problem regarding header file in ubuntu 10.10. I am executing a sniffing program which makes use of this header file. My system shows libcap package is installed. Still, on compiling the code, an error is coming which reads:

fatal error: pcap.h: No such file or directory compilation terminated.

Please help me out.

Thanks all:)

4条回答
干净又极端
2楼-- · 2019-04-03 05:03

If you're using linuxbrew, you can just brew install libpcap. In my case I was trying to install nethogs and it failed with this error.

查看更多
Lonely孤独者°
3楼-- · 2019-04-03 05:13

The system won't let me correct Eric Fossum's comment, because I lack reputation. There is a typo ("libcap" vs. "libpcap") and his suggested command should read the following:

sudo apt-get install libpcap-dev
查看更多
疯言疯语
4楼-- · 2019-04-03 05:20

You don't have the pcap.h file in your include path. You need to add the location of pcap.h to your include path when compiling:

-I/path/to/pcap.h

查看更多
孤傲高冷的网名
5楼-- · 2019-04-03 05:23
sudo apt-get install libpcap0.8-dev
查看更多
登录 后发表回答