Grub2에서 이중 부팅으로 Oracle Solaris(SunOS) 11.2를 설치하려고 합니다. Grub2 지침에 따라 ISO를 추가했고 Solaris ISO에 대해 다음 Grub 항목을 얻었습니다.
menuentry "Grml Rescue System (sol-11_2-text-x86.iso)" {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 fa099154-932d-47e2-a529-bf050aa7d62e
else
search --no-floppy --fs-uuid --set=root fa099154-932d-47e2-a529-bf050aa7d62e
fi
iso_path="/boot/grml/sol-11_2-text-x86.iso"
export iso_path
kernelopts=" "
export kernelopts
loopback loop "/boot/grml/sol-11_2-text-x86.iso"
set root=(loop)
configfile /boot/grub/loopback.cfg
}
하지만 이 Grub 항목을 부팅하려고 하면 "아무 작업도 수행하지 않습니다". 이 Grub은 Grub 부팅 메뉴에 표시되지만... 선택하면 Grub 메뉴로 돌아가고 ISO 이미지에는 아무 작업도 수행하지 않습니다. .. Solaris ISO를 성공적으로 설치한 분이라면 ISO를 얻는 방법을 알려주세요....