Answers for "size of folder in mb linux"

7

show directory size linux

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

size of folder in mb linux

# Just use the du command:
du -sh -- *

# will give you the cumulative disk usage of all non-hidden directories,
# files etc in the current directory in human-readable format.

# You can use the df command to know the free space in the filesystem 
# containing the directory:
df -h .
Posted by: Guest on October-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language