SSD에는 Kali를 설치하고 다른 HDD에는 Windows 10을 설치했습니다.
SSD에서 부팅하면 kali linux 옵션만 있는 grub 메뉴가 표시되고 HDD에서 부팅하면 Windows 10이 직접 부팅됩니다.
그래서 SSD에서 부팅하여 grub 메뉴에서 부팅할 OS를 선택하고 싶습니다. (grub 메뉴에 Windows 10 옵션을 추가하고 싶습니다)
해결됨: 방금 os-prober를 사용하여 Windows를 감지하고 grub-mkconfig를 통해 grub 파일을 재구성했습니다. 감사합니다 타크라스.
답변1
저는 Kali에 익숙하지 않지만 기본적으로 os-prober 설치를 사용하고 Windows 파티션을 마운트하고 grub 구성을 재생성합니다.
Arch 위키에는 좋은 설명이 있습니다(Windows에 대한 특별 참고 사항 참고). https://wiki.archlinux.org/title/Grub#Detecting_other_operating_systems
답변2
참고: 이 작업을 수행하려면 "sudo update-grub"도 실행해야 했습니다. grub 항목이 없으면 grub 항목이 업데이트되지 않습니다.
단계는 다음과 같습니다.
- sudo os-prober
- Windows 드라이브 마운트(바탕 화면에서 두 번 클릭)
- sudo grub-mkconfig
- sudo 업데이트 그럽
답변3
다음 메시지를 받았기 때문에 sudo-update grub 전에 한 단계를 더 수행해야 했습니다.
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
Adding boot menu entry for UEFI Firmware Settings ...
해결책은 라인을 추가하는 것입니다
GRUB_DISABLE_OS_PROBER=false
마지막 항목 이후 /etc/default/grub
(예 sudo nano /etc/default/grub
: