rocky-linux-generic-images/includes/disk-layout.ksi

13 lines
346 B
Plaintext

# initialize the disk
zerombr
# Remove all partitions
clearpart --drives=sda --all --disklabel=gpt
# Create partitions
# The '--size' option takes MB, not MiB
# 1074 MB = 1 GiB
# 2148 MB = 2 GiB
part /boot --asprimary --ondisk=sda --size=1074 --label=boot --fstype=efi
part / --asprimary --ondisk=sda --size=2148 --label=root --fstype=ext4