Linux

47GB 的空間去哪兒了?

  • January 16, 2013

在 Intel atom 230 上全新安裝 od 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

這有幫助嗎?

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%.

47G 從 917G 接近 5%。這是用於超級使用者目標的預設保留塊數量。您可以看到正在執行tune2fs -l /dev/md0 | grep "Reserved block count". 和的-m參數可以更改預設行為。tune2fs``mke2fs

引用自:https://unix.stackexchange.com/questions/61409