47GB的空间去哪儿了?

47GB的空间去哪儿了?

在 Intel Atom 230 上全新安装 Debian Squeeze 6.0.6 x64,配备 3 个 HDD,容量为 3x500GB。

df -h显示:

datastore              size used  free   %   mounted
/dev/md0              917G  909M  870G   1% /
tmpfs                1001M     0 1001M   0% /lib/init/rw
udev                  996M  188K  996M   1% /dev
tmpfs                1001M     0 1001M   0% /dev/shm

df -i显示:

datastore              size used  free   %   mounted
/dev/md0             61054976   27582 61027394    1% /
tmpfs                 256087       7  256080    1% /lib/init/rw
udev                  254831     692  254139    1% /dev
tmpfs                 256087       1  256086    1% /dev/shm

是ext3。

请告诉我,我的 47 GB 去哪儿了?如您所见,这是一个干净的安装。

du -sh显示:709M

答案1

这有帮助吗?

man mkfs.ext3
-m reserved-blocks-percentage
   Specify the percentage of the filesystem blocks reserved for the
   super-user.   This  avoids  fragmentation, and allows root-owned
   daemons, such as syslogd(8), to continue to  function  correctly
   after non-privileged processes are prevented from writing to the
   filesystem.  The default percentage is 5%.

答案2

47G距离917G接近5%。这是用于超级用户目标的默认保留块数量。可以看到正在执行tune2fs -l /dev/md0 | grep "Reserved block count"-m的参数tune2fsmke2fs可以更改默认行为。

相关内容