Answers for "linux get folder size in gb"

16

how to check folder size in linux

# show all folder size in the current directory
du -h --max-depth=1
Posted by: Guest on January-18-2021
5

command to check size of folder in linux

du -lh --max-depth=1 --block-size=M | sort -nr
Posted by: Guest on September-30-2020
1

get folder size linux

#This shows you the folder size in human readable format

sudo du -sh /folder
Posted by: Guest on November-26-2021
1

check size of folder linux

#using -h displays the size of a folder in kb,mb and gb for better understanding
#and human readable
ll -h

#don't forgive to give a thumbs up
Posted by: Guest on September-26-2021
1

check size of folder linux

#check storage of server
df -h ### Human format


#using -h displays the size of a folder in kb,mb and gb for better understanding
#and human readable
ll -h
Posted by: Guest on September-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language