在 Cent OS 中更改 ext3 文件系统中的最大 inode 计数

在 Cent OS 中更改 ext3 文件系统中的最大 inode 计数

假设我在 Cent OS 中使用 ext3 文件系统:我可以增加文件系统中的可用 Inode 数量吗?如果可以,该怎么做?当我运行时, tune2fs -l /dev/sda1 它得到了以下 Inode 统计信息:

Filesystem features:      has_journal ext_attr resize_inode dir_index filetype needs_recovery sparse_super
Inode count:              26104
Free inodes:              26069
Inodes per group:         2008
Inode blocks per group:   251
First inode:              11
Inode size:               128
Journal inode:            8
Journal backup:           inode blocks

答案1

为了增加 ext3 文件系统中的 Inode 数量,我们需要使用选项重新创建文件系统,mke2fs我们-i可以设置每 Inode 字节数比率,这将影响 Inode 的数量。否则,该-N选项允许指定确切的 Inode 数量。

相关内容