O GRUB não inicia o sistema padrão

0

Meu sistema não inicializa até que eu pressione enter no grub.

cat /etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_TIMEOUT_STYLE="countdown"
GRUB_DEFAULT="0"
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET="false"
GRUB_TIMEOUT="1"
GRUB_DISTRIBUTOR="'lsb_release -i -s 2> /dev/null || echo Debian'"
GRUB_CMDLINE_LINUX_DEFAULT="nomdmonddf nomdmonisw nomdmonddf nomdmonisw nomdmonddf nomdmonisw init=/lib/systemd/systemd"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL="console"

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command 'vbeinfo'
#GRUB_GFXMODE="1280x1024"

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
GRUB_DISABLE_LINUX_UUID="true"

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

GRUB_DISABLE_OS_PROBER="false"
GRUB_RECORDFAIL_TIMEOUT="0"

GRUB_SAVEDEFAULT="false"

Por que a configuração GRUB_TIMEOUT não está funcionando? Eu corri o update-grub e o Grub Customizer, mas nada ajuda. Meu os-prober também não está funcionando. Ambos funcionaram quando eu estava no 14.04, agora estou usando 14.10.

    
por ike 05.01.2015 / 07:15

2 respostas

1

Dê uma olhada no seu arquivo /boot/grub/grub.cfg real, o que você colou não é o "real".

A mina trabalha para selecionar uma entrada "padrão" (começa a contar a partir de zero) após 10 segundos com estas linhas:

set timeout=10
set default=0
    
por Xen2050 05.01.2015 / 10:10
0

Você tem

GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET="false"
GRUB_TIMEOUT="1"

Acho que hoje em dia simplesmente remover GRUB_HIDDEN_TIMEOUT funciona melhor. Em suma, substitua acima com apenas

GRUB_TIMEOUT="1"

e você deve ver o menu com tempo limite de 1 segundo. Se você quiser algum outro estilo, veja GRUB_TIMEOUT_STYLE (execute info -f grub -n 'Simple configuration' da linha de comando porque o grub não inclui man de páginas sensíveis).

    
por Mikko Rantalainen 10.03.2017 / 12:02