これは、インストールを完了する前の最終ステップです。grubをMBRにインストールします。
この画面をバイパスするために、どのdebconfオプションがここで使用すべきかわかりません。インストール後、使用可能なすべてのdebconf文字列を取得しようとしましたが、mbr
を含むものはありません
他のOSが検出されなかった場合:
d-i grub-installer/only_debian boolean true
他のOSが検出された場合:
d-i grub-installer/with_other_os boolean true
インストール後にGRUBブートローダーをMBRにインストールすることをお勧めします(これにより、MBRの現在のブートローダーが置き換えられます)。MBRはGRUB= 。
私はこれをMBRに反応させる方法を見つけました
# This is fairly safe to set, it makes grub install automatically to the MBR
# if no other operating system is detected on the machine.
d-i grub-installer/only_debian boolean true
# This one makes grub-installer install to the MBR if it also finds some other
# OS, which is less safe as it might not be able to boot that other OS.
d-i grub-installer/with_other_os boolean true
これは、MBRにインストールしたくない場合
# Alternatively, if you want to install to a location other than the mbr,
# uncomment and edit these lines:
#d-i grub-installer/only_debian boolean false
#d-i grub-installer/with_other_os boolean false
#d-i grub-installer/bootdev string (hd0,0)
# To install grub to multiple disks:
#d-i grub-installer/bootdev string (hd0,0) (hd1,0) (hd2,0)
これらの設定はDebian Lennyのpreseedファイルから取得されます here