i have a file system with usaged 100%,
so i want to see what kind of big files for that file system(/dev/vda4),
and i used df -h --max-depth=1 /
but i can not find 47G used for /, is it possible that there are other directories for /dev/vda4 except for / ? if so, how to find it ?
You can use this command to find big files (more than 100MB):
find / -xdev -size +100M
-xdev means exclude other mounted file systems.
To get all the mount points on one file system, you can do
df -a | grep vda5