3개의 HDD와 3x500GB 용량을 갖춘 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
기본 동작을 변경할 수 있습니다.