GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
TRUSS(1) FreeBSD General Commands Manual TRUSS(1)

truss
trace system calls

truss [-facedDHS] [-o file] [-s strsize] -p pid

truss [-facedDHS] [-o file] [-s strsize] command [args]

The truss utility traces the system calls called by the specified process or program. Output is to the specified output file, or standard error by default. It does this by stopping and restarting the process being monitored via ptrace(2).

The options are as follows:

Trace descendants of the original traced process created by fork(2), vfork(2), etc. To distinguish events between processes, the process ID (PID) of the process is included in the output of each event.
Show the argument strings that are passed in each execve(2) system call.
Do not display individual system calls or signals. Instead, before exiting, print a summary containing for each system call: the total system time used, the number of times the call was invoked, and the number of times the call returned with an error.
Show the environment strings that are passed in each execve(2) system call.
Include timestamps in the output showing the time elapsed since the trace was started.
Include timestamps in the output showing the time elapsed since the last recorded event.
Include the thread ID of in the output of each event.
Do not display information about signals received by the process. (Normally, truss displays signal as well as system call events.)
file
Print the output to the specified file instead of standard error.
strsize
Display strings using at most strsize characters. If the buffer is larger, “...” will be displayed at the end of the string. The default strsize is 32.
pid
Follow the process specified by pid instead of a new command.
command [args]
Execute command and trace the system calls of it. (The -p and command options are mutually exclusive.)

Follow the system calls used in echoing "hello":
$ truss /bin/echo hello

Do the same, but put the output into a file:

$ truss -o /tmp/truss.out /bin/echo hello

Follow an already-running process:

$ truss -p 34

dtrace(1), kdump(1), ktrace(1), ptrace(2), utrace(2)

The truss command was written by Sean Eric Fagan for FreeBSD. It was modeled after similar commands available for System V Release 4 and SunOS.
July 24, 2017 FreeBSD 13.1-RELEASE

Search for    or go to Top of page |  Section 1 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.