web-dev-qa-db-fra.com

Comment puis-je installer les fichiers d'en-tête libpcap sur Ubuntu 12.04?

Comment puis-je installer les fichiers d'en-tête libpcap sur Ubuntu 12.04?

Lorsque j'utilise apt-get install libpcap je reçois le message suivant:

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libpcap
24
SuB

Utilisez ceci:

Sudo apt-get install libpcap-dev
37
oddone

installer libpcap. essayez ces commandes

cd /usr
mkdir nembuild
cd nembuild    
wget http://www.tcpdump.org/release/libpcap-1.5.3.tar.gz
tar -xf libpcap-1.5.3.tar.gz
cd libpcap-1.5.3
./configure
make && make install

Prendre plaisir!!!

6
Wajid

Pour installer libpcap, ouvrez un terminal en appuyant sur Ctrl+Alt+Tet type:

Sudo apt-get install libpcap0.8 libpcap0.8-dev libpcap-dev
3
M.Tarun