1

i need to get the entire size of /storage, but using du -sh times out after about an hour! is there another way to get the entire directory size?

mattdm
  • 6,600
  • 1
  • 26
  • 48
Andrew Fashion
  • 1,655
  • 7
  • 22
  • 26

1 Answers1

2

Is /storage mounted as a separate filesystem? If so, you can simply type df /storage and that should work.

The fact that the command is timing out suggests that it's a network filesystem. If so, what filesystem type is it? What's it provided by and how are you mounting it?

mattdm
  • 6,600
  • 1
  • 26
  • 48