Adding Debian 13 config

This commit is contained in:
2025-08-20 19:48:27 -04:00
parent 9c4a117620
commit cc5e690fef
2 changed files with 95 additions and 26 deletions

View File

@@ -60,36 +60,33 @@ d-i clock-setup/ntp boolean true
d-i clock-setup/ntp-server string ntp.example.com
### Partitioning
#d-i partman-auto/disk string /dev/sda
# Use regular partitioning (no LVM)
d-i partman-auto/method string regular
d-i partman-lvm/purge_lvm_from_device boolean true
d-i partman-md/device_remove_lvm boolean true
d-i partman-auto/choose_recipe select custom-plain
d-i partman-md/device_remove_md boolean true
d-i partman-lvm/confirm boolean true
# atomic: all files in one partition
# home: separate /home partition
# multi: separate /home, /usr, /var, and /tmp partitions
d-i partman-auto/choose_recipe select atomic
# Custom recipe definition
d-i partman-auto/expert_recipe string \
custom-plain :: \
1000 1000 1000 ext4 \
$primary{ } $bootable{ } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ /boot } \
. \
4096 4096 4096 linux-swap \
$primary{ } \
method{ swap } format{ } \
. \
10000 1000000000 -1 ext4 \
$primary{ } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ / } \
.
#d-i partman-auto/expert_recipe string \
# boot-root :: \
# 1000 1000 1000 ext3 \
# $primary{ } $bootable{ } \
# method{ format } format{ } \
# use_filesystem{ } filesystem{ ext3 } \
# mountpoint{ /boot } \
# . \
# 256 512 768 linux-swap \
# method{ swap } format{ } \
# . \
# 5000 10000 1000000000 xfs \
# method{ format } format{ } \
# use_filesystem{ } filesystem{ xfs } \
# mountpoint{ / } \
# .
d-i partman-partitioning/confirm_write_new_label boolean true
# Accept partitioning without asking
d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true