Skip to content

sysinternals ter vergelijking

  • sysinternals Process Explorer
    monitoring process status
  • sysinternals Procmon
    monitoring system calls (such as file creation or writes)

linux equivalenten

zie ook : monitoring real time disk io

monitoring process status

  • top
  • many system monitoring tools have “top” in their name
  • atop for a bunch of system resources
  • powertop for power consumption.
  • gnome proces monitor
  • Linux Mint default : System monitoring
    - heeft geen disk io monitrring => iotop
    - layout is enigzins “pretty basic”

system calls

https://github.com/Sysinternals/ProcMon-for-Linux
https://github.com/alexandernst/monks

dtrace4linux: to trace some interesting tidbits of the kernel.

To watch what a particular process is doing, call strace on it. For example, if you’re only interested in filesystem accesses:

strace -s9999 -efile command_name    # trace a program during its whole execution
strace -s9999 -efile -p1234          # trace a running program with the given PID

strace is specific to Linux, but other systems have a similar tool: truss on Solaris, ktrace or dtrace under *BSD, etc.

To watch what’s happening to a particular file or in a particular directory or directory tree, use the inotify facility.

inotifywait -m .