






Code: Select all
echo 1 > /proc/sys/vm/block_dumpCode: Select all
while true; do dmesg -c | grep -v pdflush | grep -v reiserfs/0; sleep 0.5; done
And this is what lm-profiler does for you, see my post abovesschlueter wrote:Ah, now I have finally found what I wanted and that is probably useful for Charles Alexander as well.
Real-time file-system activity monitor:
Activate:Watch:Code: Select all
echo 1 > /proc/sys/vm/block_dumpThis is a very raw view, it can be used to get a first impression, but it doesn't show any statistics like which process is causing the most disk activity or which process has been "waiting for io" for the longest time.Code: Select all
while true; do dmesg -c | grep -v pdflush | grep -v reiserfs/0; sleep 0.5; done

I've now run lm-profiler. As far as I understand this tool has a different focus. It tries to figure out which services could be disabled in order to optimize notebook hard disk spindown intervals.Earthwings wrote: And this is what lm-profiler does for you, see my post above