Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 382 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 382 Bytes

DISK USAGE

Demonstrate some examples of calculating disk usage.

Space

# find files or folders and show disk space used for them. 
find /output -iname "share" -or -iname "include" | xargs du -sh

# summarise each folder (depth 1)
echo ../* | du -h -d1

inodes

You can change the number of inodes when creating the filesystem.

df -i

Resources