I have setup a LXC container with LVM as backingstore. On the host the command lvs --units m
outputs the following:
LV VG Attr LSize Pool Origin Data% Move Log Copy% Convert
vm dvg -wi-a---- 1000.00m
When I'm inside the container the command df -h -B M
prints this:
Filesystem 1M-blocks Used Available Use% Mounted on
/dev/dvg/vm 969M 407M 513M 45% /
none 1M 0M 1M 0% /sys/fs/cgroup
none 396M 1M 396M 1% /run
none 5M 1M 5M 1% /run/lock
none 1977M 0M 1977M 0% /run/shm
none 100M 0M 100M 0% /run/user
Both outputs are in Mebibytes (MiB).
Now the question arises what files/metadata reserve the 1000-969=31MiB
? Is it possible to display them?
Thanks!