
I’m using Linux for a long time, and recently I have to use Solaris in my work. One of tool I used in Linux is ‘strace’, but in Solaris ‘strace’ is a bit different. In Solaris you must use ’truss’.
Here is a sample use of ‘truss’
truss -a -e -f -p PIDNUMBER
You should replace PIDNUMBER with PID number of process you want to analyse.
Comments are closed.