버튼을 누르고 있으면 grub이 특정 운영 체제로 부팅됩니다.

버튼을 누르고 있으면 grub이 특정 운영 체제로 부팅됩니다.

버튼을 누르고 있으면 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
}

관련 정보