I have a fully working EFI dual-boot of Windows 7 and Ubuntu 14.04.3 in that I can select either Ubuntu or Windows from my grub menu and that OS boots correctly.
However, on my Ubuntu install when I use sudo reboot
or otherwise issue a restart command it does not return to the UEFI BIOS or GRUB menus. Instead it always returns immediately to the Ubuntu OS and does not give me any option to switch OS to Windows.
This is a major issue for me as I wish to use grub-reboot
to boot into my Windows 7 OS remotely. Currently I can only achieve this by using grub-reboot
then powering off and physically pressing the on switch on my PC.
Am I missing some option for the reboot
command that allows me to "fully" restart back to the GRUB menu or UEFI BIOS?
[ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"
and got back "Installed in Legacy mode" even though I installed everything using with non-EFI booting disabled and grub is 100% running in EFI mode – thehug0naut Feb 16 '16 at 16:17sudo grub-reboot 'Windows Boot Manager (on /dev/sda1)'
This requires GRUB_DEFAULT=saved in /etc/default/grub (and then regenerating grub.cfg) – oldfred Feb 16 '16 at 19:32sudo reboot
does not reboot my system to grub as stated above. – thehug0naut Feb 16 '16 at 19:50