среда, 15 января 2014 г.

Оценка использования дискового пространства

Вывести 10-ть самых тяжелых в системе:

# du -a / | sort -n -r | head -n 10


А вот пример для поточной директории

du -hsx * | sort -rh | head -10

  • du command -h option : display sizes in human readable format (e.g., 1K, 234M, 2G).
  • du command -s option : show only a total for each argument (summary; не углубляться и не расписывать все деревья поддиректорий).
  • du command -x option : skip directories on different file systems.
  • sort command -r option : reverse the result of comparisons.
  • sort command -h option : compare human readable numbers. This is GNU sort specific option only.
  • head command -10 OR -n 10 option : show the first 10 lines.

Комментариев нет:

Отправить комментарий