ディスクパーティション関連の Preseed 設定を調べてみました。
環境
Ubuntu 14.04 (Trusty Tahr) Server
- 使用するディスクを指定
d-i partman-auto/disk string /dev/sda
ディスクが 1個だけの場合はデフォルトでそれが使われるのでこれ必要ないです。
複数のディスクがある場合はこれで指定します。
- メソッド (lvm を使うかとか) を指定
d-i partman-auto/method string regular
- regular: use the usual partition types for your architecture
- lvm: use LVM to partition the disk
- crypto: use LVM within an encrypted partition
とのことです。regular にすると手動で「Guided - use entire disk」を選んだのと同じ結果になりました。
- lvm の場合は以下も指定します。
# Write the changes to disks and configure LVM?: Yes d-i partman-lvm/confirm_nooverwrite boolean true # Size of the selected partition: max d-i partman-auto-lvm/guided_size string max
- 確認をスキップ
# Overview of your currently configured partitions and mount points: # Finish partitioning and write changes to disk d-i partman/choose_partition select finish # Write the changes to disks?: Yes d-i partman/confirm_nooverwrite boolean true
参考
0 件のコメント:
コメントを投稿