J'ai essayé de mettre à jour Grub alors je lance:
Sudo update-grub
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Qu'est-ce que cet avertissement veut changer exactement? (Je suis passé de 12.04 à 14.04 avant)
Ceci est mon fichier /etc/default/grub
:
GRUB_DEFAULT="0"
GRUB_HIDDEN_TIMEOUT="0"
GRUB_HIDDEN_TIMEOUT_QUIET="true"
GRUB_TIMEOUT="10"
GRUB_DISTRIBUTOR="`lsb_release -i -s 2> /dev/null || echo Debian`"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
Vous ne pouvez pas utiliser les paramètres GRUB_HIDDEN_TIMEOUT
et GRUB_TIMEOUT
simultanément. Cela est vrai même lorsque le délai d'attente masqué est défini sur 0.
Vous pouvez commenter la ligne que vous ne voulez pas.
Par exemple:
#GRUB_HIDDEN_TIMEOUT=0
Après avoir enregistré la modification, exécutez à nouveau Sudo update-grub
.
Réponse courte:
#GRUB_HIDDEN_TIMEOUT=0
#GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT_STYLE=hidden
Ou supprimez simplement les deux premières lignes de l’entrée ci-dessus et remplacez-le par
GRUB_TIMEOUT_STYLE=[menu|countdown|hidden]
Explication:
À partir de ce moment (2016), les options GRUB_HIDDEN_TIMEOUT
et GRUB_HIDDEN_TIMEOUT_QUIET
ont déjà été obsolètes . Alors ne les utilisez plus. Au lieu de cela, vous pouvez utiliser GRUB_TIMEOUT_STYLE
.
Selon info -f grub -n 'Simple configuration'
, vous avez ceci:
'GRUB_TIMEOUT_STYLE'
If this option is unset or set to 'menu', then GRUB will display
the menu and then wait for the timeout set by 'GRUB_TIMEOUT' to
expire before booting the default entry. Pressing a key interrupts
the timeout.
If this option is set to 'countdown' or 'hidden', then, before
displaying the menu, GRUB will wait for the timeout set by
'GRUB_TIMEOUT' to expire. If <ESC> is pressed during that time, it
will display the menu and wait for input. If a hotkey associated
with a menu entry is pressed, it will boot the associated menu
entry immediately. If the timeout expires before either of these
happens, it will boot the default entry. In the 'countdown' case,
it will show a one-line indication of the remaining time.
changement
GRUB_TIMEOUT="10"
à
GRUB_TIMEOUT="0"
Si vous n'êtes pas en double amorçage
et alors
Sudo update-grub