Ethereal-users: Re: [ethereal-users] Moving Executable

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <gharris@xxxxxxxxxxxx>
Date: Thu, 12 Aug 1999 23:38:48 -0700
> Is it possible to move a compiled copy of Ethereal from one machine running
> Red Hat Linux to another, without intalling and compiling everything?  I
> tried copying just the ethereal file itself, but it reported it could not
> find an SNMP library when I ran it on the destination system.

It's probably dynamically linked with the SNMP library; if so, to run
it, you'd either have to

	1) install the shared SNMP library on the destination system;

	2) build it on the destination system (in which case it should
	   run on the source system - but it'll lack SNMP support);

	3) hand-tweak the Makefile to statically link with the SNMP
	   library, and rebuild it on the system that has the SNMP
	   library (which would require that the system also have a
	   static version of the SNMP library).