Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

lib question

Status
Not open for further replies.

peterve

IS-IT--Management
Mar 19, 2000
1,348
NL
I had to install a few libraries (libnet) in order to compile Firewalk, but it doens't seem to work on any of them

I place the tar file in /utils/libnet,
untarred them,
ran the make and make install (as specified in the readme file)
but when I compile Firewalk, it still says that it can't find libnet

Maybe I put the file in the wrong directory...
Can somebody please explain step by step how I can get this right please ? Thanks ---------------------------------------------------------------------
I have not failed, I've just found 10,000 ways that don't work
---------------------------------------------------------------------
Peter Van Eeckhoutte
peter.ve@pandora.be
*:->* Did this post help? Click below to let me know !
 
Hi,



For libnet, all you do is download the src from to somewhere like /usr/src/ then do



cd /usr/src/

tar zxvf libnet.tar.gz

cd Libnet-1.0.2a/

./configure

make

make install



Then cd to your Firewalk src directory and try again. You may well find that it then stops with a libpcap error. If so,

get it from ftp://ftp.ee.lbl.gov/libpcap-0.4.tar.Z

and do



tar Zxvf libpcap-0.4.tar.Z

cd libpcap-0.4

./configure

make install

make install-incl



Then try once more with Firewalk...



Rgds
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top