创建预置分区

创建预置分区

我正在寻找

  • 固定 10GB / 分区

  • 固定 1GB SWAP

  • ext4 分区中剩余的所有空间

使用以下代码,剩余的空间被放在交换区,有人可以帮忙吗?

d-i partman-auto/expert_recipe string                         \
  boot-root ::                                            \
          10000 10000 10000 ext4                      \
                $primary{ } $bootable{ }                \
                  $lvmok{ } method{ format } format{ }              \
                  use_filesystem{ } filesystem{ ext4 }    \
                 mountpoint{ / }                         \
          .                                               \
          64 512 1000  linux-swap                         \
                  $lvmok{ } method{ swap } format{ }                \
          .                                               \
          10000 10000 -1 ext4                      \
                  method{ format } format{ }              \
                  use_filesystem{ } filesystem{ ext4 }    \
          .

答案1

你使用 lvm 方法吗 d-i partman-auto/method string
分区器不理解其余分区方法是什么 - 如果是在 lvm 下,你应该使用$lvmok{ }

检查这些预置文件https://github.com/bonddim/linux-unattended-installation/blob/master/ubuntu/preseed

相关内容