细节

细节

我使用 UBIFS 作为 rootfs。我想检查 / 中每个目录的大小。

当我用 du 命令检查时,它显示大于 mtd 大小。您能告诉我如何检查每个目录的正确大小吗?

细节

$ du -sh /
508M /

Physical Erase Block (PEB) is 128KB. Logical Erase Block (LEB) of UBI is 124KB.

mtdinfo command shows as follows:
mtd4
Name:                           rootfs
Type:                           nand
Eraseblock size:                131072 bytes, 128.0 KiB
Amount of eraseblocks:          3664 (480247808 bytes, 458.0 MiB)
Minimum input/output unit size: 2048 bytes
Sub-page size:                  2048 bytes
OOB size:                       64 bytes
Character device major/minor:   90:8
Bad blocks are allowed:         true
Device is writable:             true

擦除块的数量为 458MB,但 du 命令显示为 508MB。它很奇怪。为什么du显示的尺寸更大?

添加

$df -h
Filesystem      Size  Used Avail Use% Mounted on
ubi0:rootfs     400M  274M  126M  69% /
devtmpfs         89M   28K   89M   1% /dev
tmpfs           249M  144K  249M   1% /run
tmpfs           249M  156K  249M   1% /var/volatile

相关内容