『楼 主』:
grub for dos 怎样进行单硬盘的多引导
使用 LLM 解释/回答一下
C驱是主分区,装winxp 为活动分区
D也是主分区,装maxosx
用grup无论怎样启动d:macosx
就出现 HFS+ partition error
////////////////////////////
timeout 30
default 0
color black/light-gray light-gray/black
title 1. c: winxp
rootnoverify (hd0,0)
chainloader (hd0,0)+1
title 2. d:macosx
rootnoverify (hd0,1)
chainloader (hd0,1)+1
/////////////////////
如果改成
////////////////////////////
timeout 30
default 0
color black/light-gray light-gray/black
title 1. c: winxp
rootnoverify (hd0,0)
chainloader (hd0,0)+1
title 2. d:macosx
rootnoverify (hd0,1)
makeactive //添加启动,就可以了启动了,但下次只能从d开始,d已经成为activve了
chainloader (hd0,1)+1
/////////////////////
Partition C is the primary partition, installed with winxp as the active partition. Partition D is also a primary partition, installed with maxosx. No matter how I use grub to boot d:macosx, it just shows HFS+ partition error.
////////////////////////////
timeout 30
default 0
color black/light-gray light-gray/black
title 1. c: winxp
rootnoverify (hd0,0)
chainloader (hd0,0)+1
title 2. d:macosx
rootnoverify (hd0,1)
chainloader (hd0,1)+1
/////////////////////
If changed to
////////////////////////////
timeout 30
default 0
color black/light-gray light-gray/black
title 1. c: winxp
rootnoverify (hd0,0)
chainloader (hd0,0)+1
title 2. d:macosx
rootnoverify (hd0,1)
makeactive //Add boot, it can start, but next time can only start from d, d has become activve
chainloader (hd0,1)+1
/////////////////////
|