Que debconf pré-configurou a opção para instalar o GRUB automaticamente no MBR?

2

NOTA: Estou usando o preseed aqui, este passo deve ser feito automaticamente a partir da configuração preseed

Este é o último passo antes de terminar a instalação, instale o grub no MBR:

Não tenho certeza de qual opção debconf deve ser usada aqui, para ignorar essa tela; após a instalação, tentei obter todas as strings debconf usadas possíveis, e nada contém mbr

    
por daisy 27.05.2012 / 09:49

2 respostas

5

Se nenhum outro sistema operacional for detectado:

d-i grub-installer/only_debian boolean true

Se outro sistema operacional detectou:

d-i grub-installer/with_other_os boolean true

    
por ish 27.05.2012 / 10:13
4

É aconselhável instalar o bootloader do GRUB no MBR (isso substituirá o bootloader atual do MBR) após a instalação. Porque o MBR informa ao GRUB para carregar quando o sistema é inicializado.

Eu encontrei isso como fazer reagir para 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

e isto se você não quiser instalar no 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)

estas configurações são tiradas do arquivo preseed do Debian Lenny aqui

este é útil para outros exemplos

    
por Rahul Virpara 27.05.2012 / 10:00