Up

The strace command is handy. I found out about it when trying to figure out what libraries that a 32-bit program needed. I was trying to make it run under a 64-bit operating system. Here is an example of using it to see what libraries are trying to be loaded and which are missing:
strace program_name 2>&1 | grep No | grep open


Page last modified on April 20, 2006, at 07:09 AM