⇤ ← Revision 1 as of 2014-05-07 15:54:18
Size: 465
Comment:
|
Size: 453
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
Describe Tech/LinuxBoot here. |
|
Line 5: | Line 3: |
* Grub 2 {{{ |
* Grub 2 - Setting default entry {{{ |
Grub
- Grub 2 - Setting default entry
Open /etc/default/grub and ensure this line exists: GRUB_DEFAULT=saved Apply the change to grub.cfg by running: # grub2-mkconfig -o /boot/grub2/grub.cfg Now list all possible menu entries # grep ^menuentry /boot/grub2/grub.cfg | cut -d "'" -f2 Now set the desired default menu entry # grub2-set-default <menu entry title> Verify the default menu entry # grub2-editenv list