File Storage and Compression
quota -s
Disk quotas for user asoberan (uid 247789):
Filesystem space quota limit grace files quota limit grace
/dev/mapper/cl-home
4391M 18432M 100G 24925 0 0
# Space column shows how much space you're currently using on the head node
# Quota column is total amount of space allotted to you# Displays the disk usage of every file under your home directory
# The last entry will be the disk usage of your entire home directory
du -h ~
# Displays the disk usage of every file and directory immediately
# under your home directory
du -h -d 1 ~
# Displays the disk usage of one file, file.txt
du -h file.txtLast updated
Was this helpful?
