一个电源按钮用于启动 Windows 10,另一个用于启动 Ubuntu?

一个电源按钮用于启动 Windows 10,另一个用于启动 Ubuntu?

我正在尝试找到一种方法,如果电源按钮启动 ubuntu,另一个按钮或与电源键一起按下可以将我启动到 windows 10。有什么办法可以做到这一点吗?需要帮助。

答案1

首先,你必须通过以下方式找到系统中存在的 grub 条目

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

对于 ubuntu linux 来说,menuentry应该像这样

Ubuntu, with Linux 5.4.0-18-generic (on /dev/sdaX)

以及适用于 Windows 10

Windows Boot Manager (on /dev/sdaX)

因此,为了在下次重新启动时启动 Windows,您必须编写如下 shell 脚本:

#!/bin/bash
grub-reboot "Windows Boot Manager (on /dev/sdaX)"
reboot

您可以将其保存为示例boot_win.sh,并且必须exec通过以下方式使其可执行(默认情况下,新的 shell 脚本没有权限):

chmod +x /whatever/directory/it's/in/boot_win.sh

指定自定义快捷方式为了它。

相关内容