包含有关文件系统块大小的信息的文件(在 Linux 中)

包含有关文件系统块大小的信息的文件(在 Linux 中)

我想知道文件系统块大小是否存在于 /proc 或 /sys 目录中的任何文件中。

答案1

否,但您可以使用stat --file-system获取有关文件系统的信息:

% stat --file-system /
  File: "/"
    ID: 5901e0357ca07cae Namelen: 255     Type: ext2/ext3
Block size: 4096       Fundamental block size: 4096
Blocks: Total: 2580302    Free: 412729     Available: 386515
Inodes: Total: 655360     Free: 314397

如果您只想要块大小:

% stat --file-system --format='%S' /
4096

相关内容