ボタンを押し続けると、Grubメニューからオペレーティングシステムから起動できるようになります。
答え1
これが必要かどうかはわかりませんが、Wキーを押すとWindowsを起動するためのGRUBエントリがあります(「待機」とは反対)。
menuentry 'Windows Boot Manager (on /dev/nvme0n1p1)' --class windows --class os $menuentry_id_option 'osprober-efi-AAAA-BBBB' --hotkey='w' {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root AAAA-BBBB
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
また、電源を切って再起動する方法もそれぞれ次のPとおりです。R
menuentry 'Poweroff [p]' --hotkey='p' {
halt
}
menuentry 'Reboot [r]' --hotkey='r' {
reboot
}