3つのHDDと3 x 500 GBの容量を持つIntel Atom 230にDebian Squeeze 6.0.6 x64を新しくインストールしました。
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です。
私の47GBがどこに行ったのか教えてください。ご覧のとおり、これは新しくインストールされました。
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
パラメータを設定しtune2fs
てmke2fs
デフォルトの動作を変更できます。