我尝试在 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 没有任何操作image .... 请任何已成功安装 Solaris ISO 的人指出我如何获得它 ....