|
利用run模块即可。
title xp or win7 \n
find --set-root /boot/grub/run
/boot/grub/run /ntldr || /boot/grub/run /bootmgr
boot
title 交换磁盘 \n
find -set-root /boot/grub/run
/boot/grub/run --swap-ext
boot
run模块的交换磁盘,-ext 是自主选择交换。也可以改为
title 磁盘交换一次,启动第二磁盘系统 \n
find --set-root /boot/grub/run
/boot/grub/run --swap
find --set-root /boot/grub/run
/boot/grub/run /ntldt || /boot/grub/run /bootmgr
boot |
|