From 14b500afb3c1a25380f0faa001549135636bb3f3 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Wed, 4 Oct 2023 15:22:04 +0530 Subject: [PATCH] shrink root part size from 4GiB to 2GiB --- includes/disk-layout.ksi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/disk-layout.ksi b/includes/disk-layout.ksi index 37a992a..0f1fdc1 100644 --- a/includes/disk-layout.ksi +++ b/includes/disk-layout.ksi @@ -8,8 +8,8 @@ clearpart --drives=sda --all # The '--size' option takes MB, not MiB # 268 MB = 0.25 GiB # 1072 MB = 1.00 GiB -# 4288 MB = 4.00 GiB +# 2144 MB = 2.00 GiB # Keep /boot formatted as ext4 since that's what U-Boot can read part /boot/efi --asprimary --ondisk=sda --size=268 --label=rockyefi --fstype=efi part /boot --asprimary --ondisk=sda --size=1072 --label=rockyboot --fstype=ext4 -part / --asprimary --ondisk=sda --size=4228 --label=rockyroot --fstype=ext4 +part / --asprimary --ondisk=sda --size=2144 --label=rockyroot --fstype=ext4