From 8da9a44310b331dd1845d632e2de6256d40711ae Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Fri, 19 Aug 2022 19:05:07 +0200 Subject: [PATCH 1/2] adapted the size of partitions to cope with debian's inflation: - significantly increased /usr from 20G to 40G because 20G turned out to be too small (see https://bugzilla.ipr.univ-rennes1.fr/show_bug.cgi?id=3410) - slightly increased /opt from 60G to 80G to allow more room space (that's where big software is installed), as on physix90 it was full at 45% and I suspect this figure would be higher ion bullseye - reduced the size of / from 30G down to 20G because on physix90, it was only used at 22% so I guess 20G will be still more than enough on bullseye --- preseed/debian/bullseye/preseed.computenode.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/preseed/debian/bullseye/preseed.computenode.cfg b/preseed/debian/bullseye/preseed.computenode.cfg index 8c612a2..2df6c69 100644 --- a/preseed/debian/bullseye/preseed.computenode.cfg +++ b/preseed/debian/bullseye/preseed.computenode.cfg @@ -195,7 +195,7 @@ d-i partman-auto/expert_recipe string \ method{ lvm } \ vg_name{ sys } \ . \ - 25600 90000 30720 ext4 \ + 25600 90000 20480 ext4 \ $lvmok{ } \ in_vg{ sys } lv_name{ lv_root } \ method{ format } format{ } \ @@ -203,7 +203,7 @@ d-i partman-auto/expert_recipe string \ label{ root } \ mountpoint{ / } \ . \ - 10240 80000 20480 ext4 \ + 10240 80000 40960 ext4 \ $lvmok{ } \ in_vg{ sys } lv_name{ lv_usr } \ method{ format } format{ } \ @@ -221,7 +221,7 @@ d-i partman-auto/expert_recipe string \ label{ var } \ mountpoint{ /var } \ . \ - 40960 60000 61440 ext4 \ + 40960 60000 81920 ext4 \ $lvmok{ } \ in_vg{ sys } lv_name{ lv_opt } \ method{ format } format{ } \ From 855c9b9d96cfca8d013174d5b2014f4cc9ce6c8e Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Wed, 24 Aug 2022 11:51:01 +0200 Subject: [PATCH 2/2] fixed silly error (min value was greater than max value) that caused the / partition to be 25Gb instead of 20Gb max --- preseed/debian/bullseye/preseed.computenode.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preseed/debian/bullseye/preseed.computenode.cfg b/preseed/debian/bullseye/preseed.computenode.cfg index 2df6c69..fcc4c82 100644 --- a/preseed/debian/bullseye/preseed.computenode.cfg +++ b/preseed/debian/bullseye/preseed.computenode.cfg @@ -195,7 +195,7 @@ d-i partman-auto/expert_recipe string \ method{ lvm } \ vg_name{ sys } \ . \ - 25600 90000 20480 ext4 \ + 16384 90000 20480 ext4 \ $lvmok{ } \ in_vg{ sys } lv_name{ lv_root } \ method{ format } format{ } \