Answers for "check disk space ubuntu from terminal"

10

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
0

check space left in ubuntu terminal

df -t ext4
Posted by: Guest on August-06-2020

Code answers related to "check disk space ubuntu from terminal"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language