web-dev-qa-db-fra.com

Quelle option de préconfiguration debconf pour installer GRUB automatiquement sur MBR?

NOTE: J'utilise preseed ici, cette étape doit être faite automatiquement depuis la configuration de preseed

Ceci est la dernière étape avant la fin de l’installation, installez grub dans MBR:

enter image description here

Je ne sais pas quelle option debconf devrait utiliser ici, pour contourner cet écran; après l’installation, j’ai essayé d’obtenir toutes les chaînes debconf utilisées possibles, et rien ne contient mbr

2
daisy

Si aucun autre système d'exploitation détecté:

d-i grub-installer/only_debian boolean true

Si un autre système d'exploitation est détecté:

d-i grub-installer/with_other_os boolean true

5
ish

Il est conseillé d'installer GRUB chargeur de démarrage sur le MBR (cela remplacera le chargeur de démarrage actuel du MBR) après l'installation. Parce que le MBR demande à GRUB de se charger au démarrage du système.

J'ai trouvé ça comment le faire réagir pour 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

et ceci si vous ne voulez pas installer dans 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)

ces configurations sont extraites du fichier de préconfiguration de Debian Lenny ici

celui-ci est utile pour d'autres exemples

4
Rahul Virpara