Como alterar tempo de espera do boot no GRUB
Dica publicada em Linux / Configuração
Como alterar tempo de espera do boot no GRUB
É bem simples, é só alterar o arquivo "/boot/grub/menu.lst", com o comando:
# vi /boot/grub/menu.lst
Procure a linha que tem isso:
## timeout sec
# Set a timeout, in SEC seconds, before automatically booting the default entry
# (normally the first entry defined).
timeout 5
# vi /boot/grub/menu.lst
Procure a linha que tem isso:
## timeout sec
# Set a timeout, in SEC seconds, before automatically booting the default entry
# (normally the first entry defined).
timeout 5
E altere o tempo na opção "timeout", que está em segundos.
Pronto, fácil né?
Valeu!
;)
mas pra ficar melhor, podia ter incluído os comandos de manipulação do vi:
# para poder alterar algum dado (editar), clicar em <insert>
# para sair sem alterações, digitar ":q"
# para salvar e sair, digitar ":wq"
etc...