How To Check Disk Space
You can use command
to check how many disk space left.
To check how many size of file and folder.
Now, how does we know which file or folder uses the most space. Just type the command below
df -h
to check how many disk space left.
du -h
To check how many size of file and folder.
Now, how does we know which file or folder uses the most space. Just type the command below
du -xskch * | sort -rn | head -n 10