Comment 10 for bug 1087519

Revision history for this message
Kees Schoenmakers (kslinux) wrote :

Finally 'strace -f -ff -o /tmp/APP <application +args> is invaluable with solving problems.

less /tmp/APP* will show you all system calls, loads , accesses and so. Multiple APP* files may mean that the main application forked or multi-threaded. While looking with 'less' search for 'open' calls and look return status.

Kees