From 5cfc410c06e8401a96c35c2e3ae0f451f2344074 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 23 Feb 2025 15:37:18 -0600 Subject: [PATCH] fedora-disk-dch: Increase / to 4 GB 3 GB is no longer sufficient for basic Fedora installs now, especially on Raspberry Pis (_uboot-images-armv8_ adds almost 500 MB itself). --- fedora-disk-dch.ks | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedora-disk-dch.ks b/fedora-disk-dch.ks index fc81278..675e31c 100644 --- a/fedora-disk-dch.ks +++ b/fedora-disk-dch.ks @@ -1,7 +1,7 @@ # vim: set ft=sh : part pv.01 --size 1 --grow volgroup fedora pv.01 -logvol / --fstype ext4 --name rootfs --vgname fedora --size 3072 --label rootfs +logvol / --fstype ext4 --name rootfs --vgname fedora --size 4096 --label rootfs logvol /var --fstype ext4 --name var --vgname fedora --size 1024 --label var --grow logvol /var/log --fstype ext4 --name var_log --vgname fedora --size 1024 --label var-log logvol /home --fstype ext4 --name home --vgname fedora --size 100 --label home