Show pageBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== strace (Stack Trace) ====== Important parameters: ^ ''-o filename'' | output to file ''filename'' | ^ ''-f'' | check forks | ^ ''-tt'' | protocol time (microseconds) | ^ ''-p pid'' | only protocol system calls with PID ''pid'' | ^ ''-e'' | limit output, see below | ==== Which files get accessed by the program? ==== <code bash>strace -e trace=open -o logfile.log ./mycommand -mycommandparameter</code> ==== Which processes get started/paused/terminated by the program? ==== <code bash>strace -e trace=process -o logfile.log ./mycommand -mycommandparameter</code> ==== protocol syscalls of already started programs ==== <code bash> ps aux | grep mycommand | grep -v grep mycommand strace -o logfile.log -p 123 # if there's only one program running with that name: strace -o logfile.log -p `pidof mycommand` </code> Last modified: 2024-07-05 14:31