Answers for "show directory size linux"

7

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
10

check folder sizes linux

du -h --max-depth=1
Posted by: Guest on April-14-2020
1

find folder size in linux

df -sh .
Posted by: Guest on February-20-2021
7

show directory size linux

du -sh /home/george
2.1G    /home/george
Posted by: Guest on March-05-2020
0

how to get the folder size in linux

du -sh folder/
Posted by: Guest on June-01-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 "show directory size linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language