Talk:Grub2 Bootloader: Difference between revisions

From Free Knowledge Base- The DUCK Project
Jump to navigation Jump to search
Created page with "== GRUB changes == 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` G..."
 
Line 11: Line 11:
*You can change the "hidden timeout" (no menu); and also display the countdown (GRUB_HIDDEN_TIMEOUT_QUIET=false)
*You can change the "hidden timeout" (no menu); and also display the countdown (GRUB_HIDDEN_TIMEOUT_QUIET=false)
*You can force the grub menu to show by commenting out the two GRUB_HIDDEN lines with a # at the beginning of the line
*You can force the grub menu to show by commenting out the two GRUB_HIDDEN lines with a # at the beginning of the line
== How to boot in compatibility mode after install ==
sudo vi /etc/default/grub
Save & exit.
Change line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to:
GRUB_CMDLINE_LINUX_DEFAULT="noapic noacpi nosplash irqpoll"
Update grub:
sudo update-grub

Revision as of 01:44, 4 December 2020

GRUB changes

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=""
  • You can change the default from 0 to any number, corresponding to the entry in the Grub bootup menu (first entry is 0, second is 1, etc.)
  • You can change the "hidden timeout" (no menu); and also display the countdown (GRUB_HIDDEN_TIMEOUT_QUIET=false)
  • You can force the grub menu to show by commenting out the two GRUB_HIDDEN lines with a # at the beginning of the line

How to boot in compatibility mode after install

sudo vi /etc/default/grub

Save & exit.

Change line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to:

GRUB_CMDLINE_LINUX_DEFAULT="noapic noacpi nosplash irqpoll"

Update grub:

sudo update-grub