Cómo verificar el tamaño de la carpeta en Linux
# show all folder size in the current directory
du -h --max-depth=1
Clever Cardinal
# show all folder size in the current directory
du -h --max-depth=1
du -h --max-depth=1
du -sh /home/george
2.1G /home/george
du -sh /var
#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
#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