2

Currently the free space of my hard disk is shrinking for unknown reason. The free space keeps reducing until no space lefts. I don't know what's the cause, so I want to inspect to see what process is the culprit and terminate it.

2 Answers 2

4

iotop is to the hard disk what as top is to the CPU.

Among other things, it displays how many bytes per second all available proccesses are writing to the disk.

On Ubuntu, you can install it with apt-get install iotop.

4

lsof +d / | awk '$4 ~ /.*[uw]/' will list all processes with files open for reading or updating.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.