web-dev-qa-db-ja.com

GRUB= MBRに自動的にインストールするdebconf preseedオプションはどれですか?

注:ここではpreseedを使用していますが、この手順はpreseed configから自動的に実行する必要があります

これは、インストールを完了する前の最終ステップです。grubをMBRにインストールします。

enter image description here

この画面をバイパスするために、どのdebconfオプションがここで使用すべきかわかりません。インストール後、使用可能なすべてのdebconf文字列を取得しようとしましたが、mbrを含むものはありません

2
daisy

他のOSが検出されなかった場合:

d-i grub-installer/only_debian boolean true

他のOSが検出された場合:

d-i grub-installer/with_other_os boolean true

5
ish

インストール後に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

これは他の例に役立ちます

4
Rahul Virpara