on our linux system (suse), one of the partition is nfs-mounted and some process is continuously eating the disk space in it, leaving behind zero bytes to write. How can I figure out this process or daemon which is eating the disk space? Is there any way like checking in /proc with ps -ef?
|
feedback
|
migrated from stackoverflow.com Mar 1 '11 at 21:34
This question came from our site for professional and enthusiast programmers.
|
You could use So as an example, to see which processes are using the open files in the
| |||
|
feedback
|
|
atop has a column for this called WRDSK. In your situation I'd install and run it, then hit D to sort processes by disk activity. | |||
|
feedback
|