Posted by: மோகன் on: June 18, 2008
I use Fedora 9 with KDE4. Recently I have noticed that the system’s hard disk is continuously being accessed. Some times it leads to slow system response.
So I wanted to know which process writes continuously. With my colleague’s help I used SystemTap
probe syscall.write {
printf(“%s=====> %s\n”,execname(),argstr);
}
And run this script by
stap -vv write.stp
Partial output from the script [...]