Is there a way for grub to automatically reboot into Windows from Windows?
I have a dual boot setup:
- Ubuntu 16.04 LTS
- Windows
Currently when I want to reboot
from Ubuntu into Windows I use grub-reboot
with the appropriate number as argument. This works well.
However sometimes Windows needs a reboot so a certain program can install or update and I manually have to select the right grub boot menu entry. Is there a similar way (from Windows UI) to tell grub which entry to boot?
I suppose the grub-reboot
command passes the argument to a file which is in turn read by grub upon reboot
.
edit (concerning my selected answer): I'm currently looking into mounting the ext4 drive that contains /boot and scripting the edit. this will possibly take quite a while since i'm doing this in my free time beside my 40h/week non-tech job. ^^
Solution 1:
Easiest way is with Grub
It is cumbersome controlling grub
from Windows. A third party application to access Ubuntu from Windows and some hacking is required. However from the top part of this post: How to change the order on my dual booting distros, you can setup grub
to automatically reboot to the last menu option. So when you initially boot with windows, and it wakes up at 2 am to run updates, grub
will reload Windows so it can gracefully finish updates.
When you manually reboot and pick Ubuntu from grub
all your next reboots automatically load Ubuntu. This feature works equally well if you have bugs in the current kernel and want grub
to automatically reboot into an older kernel version you selected.
How to get Grub to repeat last boot selection
This is fairly straight forward. Using sudo
powers edit /etc/default/grub
and change the following:
#GRUB_DEFAULT=0 # Rather than option #1, we'll always default to last boot choice.
GRUB_DEFAULT=saved
GRUB_SAVEDEFAULT=true
The first line you will be commenting out and right below that insert the next two lines.
Save the file and type in the terminal:
sudo update-grub
Ubuntu command line to reboot into Windows
Currently you use something like this:
sudo grub-reboot x # Where x is Windows zero-based grub menu number
sudo reboot now
From this modified Stack Exchange answer you can use the grub default to reboot into Windows. Copy this code into your ~/.bashrc
file:
function reboot-to-windows {
WINDOWS_TITLE=`grep -i "^menuentry 'Windows" /boot/grub/grub.cfg|head -n 1|cut -d"'" -f2`
sudo grub-set-default "$WINDOWS_TITLE"
sudo reboot
}
- Save the
~/.bashrc
file with newreboot-to-windows
function. - Close your current terminal session.
- Open a new terminal session for changed
~/.bashrc
to be loaded. - You could type
: ~/.bashrc
to reload it into the existing terminal session but some people recommend against do this.
To reboot into Windows from the command line use:
reboot-to-windows
If Windows automatically restarts when you aren't looking, Windows is rebooted. This allows Windows automatic updates to be processed normally over multiple-reboot cycles Windows sometimes uses.
Solution 2:
You can replicate what grub-reboot
does. It's just a script that eventually calls:
grub-editenv /boot/grub/grubenv set next_entry="Windows"
Where Windows
is the name of your grub menu entry. It might not be that
I ran that. All it does it insert next_entry=Windows
into /boot/grub/grubenv
. On line 2. So if it's just a file, on a filesystem, you can do exactly the same thing from within Windows. It's a Windows problem to solve, but here's the high-level overview:
-
Mount the disk where boot lives. This is probably the hardest bit because this is probably ext4. This might help but it's not inconcievable that you might need Linux running with Windows to edit it.
As muru points out, it needn't be this hard. You can move
/boot
to its own FAT32 partition. This makes it trivial to mount in Windows. Insert
next_entry=Windows
(or whatever) into the file after the comment, before the hashes.- Unmount.
- Reboot.
Scripting that in Windows is well outside my comfort zone and not really what we do here. But that should be all you need to do.
Solution 3:
grub-set-default
should do the same as grub-reboot, but make the setting permanent. This is not exactly from Windows UI, as you asked, but maybe it works for you.
Solution 4:
You haven't said which version of Windows or whether you're on UEFI.
If you're using a proper UEFI boot (and not legacy boot), it is possible to temporarily boot to the Windows UEFI boot entry. On Linux, this can be done using tools like efibootmgr
. On Windows, I personally use EasyUEFI. It is free for personal, GUI use, but not for enterprise or CLI use. I can't vouch for its safety. It also seems to be somewhat slow, but it does seem to work
In my own setup, which uses Arch Linux (kernel EFI shim, without GRUB), and Windows 10, this is how it looks like, after picking "Manage EFI Boot Option" on the starting screen:
If you're using UEFI boot, you should see something similar for Windows, plus a single entry for Ubuntu (which loads GRUB), plus some other device-specific options. The one-time boot option can then be used to set to boot to the UEFI boot entry for Windows once, and then back to GRUB the boot after that. After setting that, you restart as normal.