No, this has nothing to do with RPMs. In my example, "project2" is the name of the executable I want to run. It does exist. But when I type
what I get in response is:
Code:
-sh: ./project2: not found
This looks like the file "project2" does not exist, but that simply is not the case:
Code:
# ls -l project2
-rwxr-xr-x 1 root root 242216 Nov 23 2005 project2
#
What I think this means is that the executable itself is looking for a library that does not exist. I'd like to know how to find out what the executable is looking for.
- Joe