Trace the Process and See What It is Doing with strace in Linux
strace is extremely useful for getting debug information on processes being ran by an application that you don’t have compiled from source (or available source). Each line in the trace contains the system call name, followed by its arguments in parentheses and its return value. Below are some examples: Run strace against /bin/foo and capture… Read More »