Grub 1.99 Boot Screen Help

1

Acabei de instalar o Linux no meu Oplitex Gx280 . Toda vez que faço o login, sou atendido pela tela do Grub 1.99 e seleciono (Ubuntu, com Linux 3.5.0-34-generic ).

Eu preciso que meu computador inicialize automaticamente, então ajustei o arquivo / etc / default / grub e set GRUB_TIMEOUT=3 e executei o update-grub. No entanto, o menu Grub não mudou e descobriram que não há tempo limite e não avançará até que você escolha uma opção.

Eu até tentei usar a linha GRUB_SAVEDEFAULT=true . Eu também fiz uma reinstalação do grub do meu CD de inicialização sem sorte. É assim que meu arquivo grub fica depois da reinstalação:

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_DEFAULT="Ubuntu, with Linux 3.5.0-34-generic"
GRUB_HIDDEN_TIMEOUT="5"
GRUB_HIDDEN_TIMEOUT_QUIET="false"
GRUB_TIMEOUT="3"
GRUB_DISTRIBUTOR="'lsb_release -i -s 2> /dev/null || echo Debian'"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
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="640x480" 
# 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="true"
GRUB_SAVEDEFAULT="true"

Por favor, ajude-me a resolver este problema e tenha em mente que sou relativamente novo no Linux Thx

    
por Ethan 29.06.2013 / 19:12

2 respostas

1

Respondi à minha pergunta. Aparentemente, o Ubuntu não desligou corretamente em algum momento. Nesta situação, o Grub padroniza a página de seleção e força você a escolher. O bug está chegando a esta tela nesta situação também é considerada imprópria e o ciclo vicioso começa fazendo com que você sempre alcance a tela de inicialização do Grub e sempre tenha que fazer manualmente uma escolha.

Para corrigir isso, você deve editar /etc/grub.d/00_header e editar a seção de falha do registro para

if\${recordfail} = 1 ]; then
  set timeout=${GRUB_TIMEOUT}
else
  set timeout=${GRUB_TIMEOUT}
fi
EOF

Isto significa que se houver alguma falha, ele continuará após o horário especificado em / etc / default / grub em GRUB_TIMEOUT. Em seguida, execute sudo update-grub

Antes de editar isto, provavelmente diz algo ao longo das linhas de RECORD_FAIL (não me lembro exatamente o que foi dito e desde então editei o meu) com um -1. Esse -1 valor de tempo era o que me forçava a fazer manualmente uma escolha. Você pode editar apenas o -1 para algum valor de tempo, mas alterá-lo para o que é mostrado acima corrige o problema de modo desafiador.

    
por Ethan 03.07.2013 / 16:52
-1

Já tentou com isto:

GRUB_TIMEOUT="0"

Eu tentei agora, funciona. Eu também tenho 0 em " hidden grub timeout "

Aqui está meu grub:

firekage@deusex:~$ 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_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR='lsb_release -i -s 2> /dev/null || echo Debian'
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
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=640x480

# 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"
    
por firekage 29.06.2013 / 19:39