When installing CentOS 6.x, how to specify the filesystem type with ext4 and also use the autopart directive in kickstart file?
The default filesystem type with autopart directive used is ext3, which can not manage a very large disk space.
When installing CentOS 6.x, how to specify the filesystem type with ext4 and also use the autopart directive in kickstart file?
The default filesystem type with autopart directive used is ext3, which can not manage a very large disk space.
The filesystem type isn't an option for autopart
, unfortunately. The only options autopart
supports is regarding encryption. It looks like you'll have to switch to using part
to define the partitions.
From the documentation:
Note that the autopart option cannot be used together with the part/partition, raid, logvol, or volgroup options in the same kickstart file.
You might be interested in reading more about the Kickstart Options here.