MacBook上实现Vista Beta 2与OSX双启动
注意是在Macbook上,不是PC上,就是说必须有MacBook。
Windows Vista拥有全新的启动管理器,作者利用它实现了Vista与OS X的双重启动。
启动到Mac OS X。打开Terminal(终端)程序,输入以下命令将 boot.efi 复制到桌面:
cp /usr/standalone/i386/boot.efi ~/Desktop/ 复制boot.efi 到USB闪存上.
启动到Vista,复制boot.efi到C:
以管理员身份打开Command Prompt.
需要探测你是否有继承的启动加载器,在Command Prompt窗口输入.
bcdedit /enum all | find "{ntldr}" 如果返回:
identifier {ntldr} 那么就是有继承的启动加载器,进行步骤6、7;如果没有返回任何内容就忽略步骤6、7.
将下列内容复制到继承启动加载器.
bcdedit /copy {ntldr} /d "Mac OS X"
bcdedit /set {YOUR-GUID-HERE} device boot
bcdedit /set {YOUR-GUID-HERE} path oot.efi
bcdedit /displayorder {YOUR-GUID-HERE} /addlast要将其中的YOUR-GUID-HERE使用世纪的GUID替代,可以这样察看GUID:
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 oot.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 oot.efi
bcdedit /displayorder {ntldr} /addlast
- 最新文章
- 在Win XP上安装Vista终端服务客户端[01-03]
- 与以前大不相同 Vista捆绑游戏版本详情[01-03]
- 如何恢复Windows Vista/XP双启动菜单[01-03]
- 如何配置Windows 2008高级防火墙[01-03]
- 微软公布Windows Server 2008硬件需求配置[01-03]
- Windows Server 2008最新测试版发布[01-03]
- 相关文章
- 制作Windows 2003操作系统Ghost文件[01-03]
- 制作无盘Windows 2003无忧Ghost文件[01-03]
- 制作无盘Windows 2003之无忧Ghost文件[01-03]
- 出奇制胜在NTFS格式下打造纯DOS[01-03]
- Win 2000操作中Hosts文件[01-03]
- Win2000-Hosts文件的作用[01-03]
