Answers for "check ubuntu disk space"

9

check ubuntu disk space

# shows total, available, and used.
df / -h
Posted by: Guest on September-06-2020
3

check disk space ubuntu from terminal

#report file system disk space usage
df -h
or
sudo du -sh ./*
or
du -h -s *
#check space with  path
df / -h
or 
df -h /

#check space with  type
df -Th
Posted by: Guest on February-23-2021

Code answers related to "check ubuntu disk space"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language