tothphu
tothphu

Reputation: 979

how can I monitor Linux file access per file realtime

I'm trying to identify, which files are accessed realtime and check the speed of read and write on it. Something like an lsof, showing realtime file access speed per file (iostat per file). (In Windows this is the Resource Monitor's disk table.)

Do you have any ideas?

Upvotes: 1

Views: 2539

Answers (1)

SiLeX
SiLeX

Reputation: 157

You should have a look at LoggedFS. It provides very nice output WHAT happens with WHICH files in realtime.

http://loggedfs.sourceforge.net/

It should be available in your distro's Package Manager (apt-get install loggedfs) and can be easily invoked without need of configuration:

loggedfs -f /home

Upvotes: 3

Related Questions