我有自动化的 Debian 预置脚本。下面是我的预置文件中带有 swap 的分区规则:
!d-i partman-auto/expert_recipe string \
boot-crypto :: \
512 512 512 ext2 \
$primary{ } \
$bootable{ } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext2 } \
mountpoint{ /boot } \
. \
1000 20 2000 ext4 \
$defaultignore{ } \
$lvmok{ } lv_name{ opt } \
in_vg { kaktusvolumegroup } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ /opt } \
. \
1000 20 2000 ext4 \
$defaultignore{ } \
$lvmok{ } lv_name{ home } \
in_vg { kaktusvolumegroup } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ /home } \
. \
8000 80 8000 ext4 \
$defaultignore{ } \
$primary{ } \
method{ format } format{ } \
use_filesystem{ } filesystem{ ext4 } \
mountpoint{ / } \
.
# 1024 60 1024 swap \
# $defaultignore{ } \
# method{ swap } format{ } \
# .
如何回答那个是\否问题而不使用打字?
答案1
解决方案是在 preseed-file 中添加:
d-i partman-basicfilesystems/no_swap boolean false