Eu suponho que você quer criar um sistema de arquivos ext3 (por que "MBR").
Você provavelmente quer um tamanho inode de 128 bytes, não bits, certo? O tamanho do inode padrão é de 256 bytes.
O comando para criar sistemas de arquivos, mke2fs
, tem uma opção para especificar o tamanho do inode.
Use algo assim para criar um sistema de arquivos:
mke2fs -t ext3 -I 128 /dev/sdXX
De man mke2fs
:
-I inode-size
Specify the size of each inode in bytes. The inode-size value must be a power of 2 larger or equal to
128. The larger the inode-size the more space the inode table will consume, and this reduces the
usable space in the filesystem and can also negatively impact performance. It is not possible to
change this value after the filesystem is created.