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
This commit is contained in:
Guillaume Raffy 2022-08-19 19:05:07 +02:00
parent 856ac7a591
commit 8da9a44310
1 changed files with 3 additions and 3 deletions

View File

@ -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{ } \