To trace system calls and signals, we use the strace command.
Install strace in RedHat/CentOS:
yum install strace -y
The command below provides information about all the system calls that the application is using.
strace ls
The command below provides counters including the number of errors that were encountered while the application is operational.
strace -c ls
Cheers!
Leave a Reply