fatrace(8) System Manager's Manual fatrace(8)

fatrace - report system wide file access events

fatrace [ OPTIONS ]

fatrace reports file access events from all running processes.

It does not report file access by fatrace itself, to avoid logging events caused by writing the output into a file. It also ignores events on virtual and kernel file systems such as sysfs, proc, and devtmpfs.

Its main purpose is to find processes which keep waking up the disk unnecessarily and thus prevent some power saving.

By default, events are reported to stdout. This will cause some loops if you run this tool in e. g. gnome-terminal, as this causes a disk access for every output line. To avoid this, redirect the output into a file.

A typical event looks like

rsyslogd(875): W /var/log/auth.log
compiz(1971): O device 8:2 inode 658203

The line has the following fields:


If you specify the --timestamp option, the first field will be the current time.

Only record events on partition/mount of current directory. Without this option, all (real) partitions/mount points are being watched.

Write events to given file instead of standard output.

Stop after the given number of seconds.

Add timestamp to events. When this option is given once, the format will be a human readable hour:minute:second.microsecond; when given twice, the timestamp is printed as seconds/microseconds since the epoch.

Ignore events for this process ID. Can be specified multiple times.

Show only the given event types. TYPES is a list of C, R, O, W, D, +, or < with the above meanings. < and > both mean "move" and will always enable both directions.

E. g. use --filter=OC to only show open and close events.

Show only events for this command.

Print help and exit.

fatrace is developed by Martin Pitt <martin@piware.de>.

August 20, 2020 Martin Pitt