Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

How can I get grub2 to boot a different option only on the next boot?

Writer Sebastian Wright

I am setting up a dual booting headless Linux / Windows machine. I mostly want the machine to always boot up to Ubuntu, except for occasionally when I need to test something in windows.

I've installed Windows and Ubuntu, and currently it boots up to Ubuntu every time. I would like to be able to tell it to boot to Windows on the next boot only and then when I restart from Windows have the system return to booting Ubuntu.

I found Grub Legacy - section 4.3.1 - Booting once-only but I am using Ubuntu 14.04 server which has the newer version of grub. From what I've read, I need to make some changes to /etc/default/grub and use sudo grub-set-default when I want to boot to Windows.

I think those changes start with adding this to /etc/default/grub:

GRUB_DEFAULT=saved
GRUB_SAVEDEFAULT=false

Anytime changes are made to /etc/default/grub I know that I need to then run
sudo update-grub and which results in:

Generating grub configuration file ...
Found linux image: /boot/vmlinuz-3.13.0-43-generic
Found initrd image: /boot/initrd.img-3.13.0-43-generic
Found linux image: /boot/vmlinuz-3.13.0-32-generic
Found initrd image: /boot/initrd.img-3.13.0-32-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
Found Windows 7 (loader) on /dev/sda1
done

Since Windows is the 7th option in that list I believe I would run sudo grub-set-default 6 (0 based counting) - is this correct and is there a different method to get a numbered list of boot choices after the system is already booted?

Also, are the lines in /etc/default/grub sufficient to achieve this behavior or do I need to add additional configuration?

3 Answers

You need to make sure you have GRUB_DEFAULT=saved in your grub config (which is autogenerated, you change this part of it by editing /etc/default/grub). sudo update-grub to make the changes active and then use sudo grub-reboot $1.

grep -i "menuentry '" /boot/grub/grub.cfg

Will give you the menuentries that you can cut-paste in for $1. Or, as you note the options are zero-indexed, so the n-th menuentry can be had by passing (n-1) to grub-reboot.

See eg

Not tested by me as I don't have a 'Windows 7' install.

6

That is exactly what grub2-once does. Please try it. Seems grub2-once is only available for linux distros from SUSE.

shiraz-1:~/:[0]# grub2-once --list 0 SLES 15-SP1 1 Advanced options for SLES 15-SP1>SLES 15-SP1, with Linux 4.12.14-195-default 2 Advanced options for SLES 15-SP1>SLES 15-SP1, with Linux 4.12.14-195-default (recovery mode) 3 Advanced options for SLES 15-SP1>SLES 15-SP1, with Linux 4.12.14-95.54.1.19924.5.TEST.1167133-default 4 Advanced options for SLES 15-SP1>SLES 15-SP1, with Linux 4.12.14-95.54.1.19924.5.TEST.1167133-default (recovery mode)
shiraz-1:~/:[0]# grub2-once 3
shiraz-1:~/:[0]# reboot
3

Try installing grub-customizer (installation guide below) to your Ubuntu system. This GUI tool will provide you a nice set of options with that you can configure your GRUB settings, including names and order of the boot options, default system, screen resolution, fonts, background etc...
I am not sure if it has the ability to directy set what you want, but at least it can show you the os numbers. They can be referenced by their name too, I think.

How to install grub-customizer:

sudo add-apt-repository ppa:danielrichter2007/grub-customizer
sudo apt-get update
sudo apt-get install grub-customizer

(source: launchpad - daniel richter)

4

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy