strace

  • Attach to a running process with -p: strace -c -p
  • look for system call with -e, : strace -f -p -e epoll_wait
  • strace ls  2>&1 | grep mmap
  • strace ls  &| grep mmap
  • strace -e mmap ls
This entry was posted in linux, strace and tagged . Bookmark the permalink.

Leave a comment