你撒下一粒善良的种_子, 会在暗中蔓延出一片灿烂的花海
分类:
2009-12-21 15:07:59
作者:AppBeta
注意是在Macbook上,不是PC上,就是说必须有MacBook。
Windows
Vista拥有全新的启动管理器,作者利用它实现了Vista与OS X的双重启动。
cp /usr/standalone/i386/boot.efi ~/Desktop/
bcdedit /enum all | find "{ntldr}"
identifier {ntldr}
bcdedit /copy {ntldr} /d "Mac OS X"
bcdedit /set {YOUR-GUID-HERE} device boot
bcdedit /set {YOUR-GUID-HERE} path boot.efi
bcdedit /displayorder {YOUR-GUID-HERE} /addlast
C:>bcdedit /copy {ntldr} /d "Mac OS X"
The entry was successfully copied to {bcfa924e-07e0-11db-9d86-accf6fd346a1}.
C:>bcdedit /set {bcfa924e-07e0-11db-9d86-accf6fd346a1} device boot
The operation completed successfully.
C:>bcdedit /set {bcfa924e-07e0-11db-9d86-accf6fd346a1} path boot.efi
The operation completed successfully.
C:>bcdedit /displayorder {bcfa924e-07e0-11db-9d86-accf6fd346a1} /addlast
The operation completed successfully.
bcdedit /create {ntldr} /d "Mac OS X"
bcdedit /set {ntldr} device boot
bcdedit /set {ntldr} path boot.efi
bcdedit /displayorder {ntldr} /addlast