I installed Dtrace in Ubuntu 11.04.
I was able to run:
dtrace -n 'syscall:::'
and:
sudo dtrace -l | grep terminal
commands properly and got the results.
But when I tried to run:
dtrace -n 'proc:::exec-success { trace(curpsinfo->pr_psargs); }'
I'm getting error saying:
dtrace
: invalid probe specifierproc:::exec-success
{ trace(curpsinfo->pr_psargs); }: probe descriptionproc:::exec-success
does not match any probes.
What is wrong here? How can I fix this?