Check your autoinstall procedure, if you have one, for signs of the program. At UCI/NACS/DCS, see the "each" and "bin" and "lib"
directories on autoinst
Log into one or more machines you know is running the program, and:
Try ps -ef | grep progname (or ps auxww | grep program). If it shows up in ps:
See what arguments it's running with
See if there's a hard path to where the program is located
type -all -path is good too, if you think there may be more than one version of the
program on your path
Try locate to find the program
Once you've found the program, "file" it to see what kind of program it is. If it's a script, bring it up in a text editor. If
it's a binary try "strings `which prog` | grep /" to see what pathnames it has an affinity to
cd /etc, and run "find . -type f -print | xargs grep -il progname" to see what, if any, rc scripts or config files pertain to your
program
Try other forms of recursive search, including with and
without xargs, to search both the content of files, and filenames. On a large system, you'll probably want to only search specific directories,
but if the system is smaller than that, you can often search all filesystems, likely excluding NFS mounts.