1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
| 1. -c -- count time, calls, and errors for each syscall and report summary 为每个系统调用计算时间、调用、错误,并报告摘要
2. -f -- follow forks, -ff -- with output into separate files -f 跟踪fork的进程;-ff 把输出定向到独立的文件
3. -F -- attempt to follow vforks, -h -- print help message -F 尝试跟踪vfork的进程,当今平台与-f功能相同;-h 打印帮助信息
4. -i -- print instruction pointer at time of syscall 在系统调用时,打印指令指针
5. -q -- suppress messages about attaching, detaching, etc. 抑制附加、分离等信息
6. -r -- print relative timestamp, -t -- absolute timestamp, -tt -- with usecs -r 打印相对时间戳;-t 绝对时间戳;-tt 微秒
7. -T -- print time spent in each syscall, -V -- print version -T 打印每个系统调用的时间花费;-V 打印版本
8. -v -- verbose mode: print unabbreviated argv, stat, termio[s], etc. args -v 详细模式,打印非简略的参数、状态、termio[s]等
9. -x -- print non-ascii strings in hex, -xx -- print all strings in hex -x 打印非ascii的字符串为16进制;-xx 打印所有的字符串为16进制
10. -a column -- alignment COLUMN for printing syscall results (default 40) 对系统调用结果对齐列(默认为40列)
11. -e expr -- a qualifying expression: option=[!]all or option=[!]val1[,val2]... options: trace, abbrev, verbose, raw, signal, read, or write 在-e后附表达式。一个合格的表达式:选项=[!]所有 或者 选项=[!]值1[,值2]....;可选项:跟踪、缩写、冗长、原始的东东、信号、读、写。
12. -o file -- send trace output to FILE instead of stderr 发送跟踪输出到文件,而不是stderr
13. -O overhead -- set overhead for tracing syscalls to OVERHEAD usecs 设置跟踪系统调用的最大时间
14. -p pid -- trace process with process id PID, may be repeated 跟踪值为ID的进程,可以重复多个哦(注:最多32个)
15. -s strsize -- limit length of print strings to STRSIZE chars (default 32) 限制打印字符串的最大长度,默认为32字节
16. -S sortby -- sort syscall counts by: time, calls, name, nothing (default time) 排序,以系统调用过程中的时间、或者调用名等作为排序项。
17. -u username -- run command as username handling setuid and/or setgid 以其他用户名或者组名运行命令
18. -E var=val -- put var=val in the environment for command 设置环境变量
19. -E var -- remove var from the environment for command 清除环境变量
|