check directory size
du -sh /home/george
command to check the amount of disk space used
du
# To specify a folder
du <folder>
# -h to print the sizes in human-readable format
# -c to specify the grand total size
# for Example, displays the grand total in human readable format
du -hc
# We can sort the output according to size
du -h | sort -h
# to check for the larger files
du -h | sort -h | tail
OR
du -h | sort -hr | head
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us