Se no momento da criação o sistema de arquivos não usou ou desabilitou explicitamente as extensões ext4 (como uninit_bg
e flex_bg
), o sistema de arquivos será na verdade ext3 (se tiver diário) ou ext2 (se tiver não recursos ext3 ou ext4).
Você pode ativar os recursos do ext4 com tune2fs -O
.
página man do ext4:
If the -O option is used to explicitly add or remove filesystem options that should be set in the newly created filesystem, the resulting filesystem may not be supported by the requested fs-type. (e.g., "mke2fs -t ext3 -O extents /dev/sdXX" will create a filesystem that is not supported by the ext3 implementation as found in the Linux kernel; and "mke2fs -t ext3 -O ^has_journal /dev/hdXX" will create a filesystem that does not have a journal and hence will not be supported by the ext3 filesystem code in the Linux kernel.)
página do manual tune2fs:
-O [^]feature[,...]-O [^]feature[,...]
Enabling certain filesystem features may prevent the filesystem from being mounted by kernels which do not support those features. In particular the uninit_bg and flex_bg features are only supported by the ext4 filesystem.