12

I've looked everywhere for this but can't find an answer, so:

I have a VHD image created for me by a client -- he installed Win7 on a machine and then used a tool from SysInternals to create a VHD which he shared with me and a colleague.

I can mount the VHD on my Mac using Parallels Mounter and see the contents, but I can't for the life of me see how to import the VHD to create a new Parallels VM from the VHD file. Parallels Transporter seems to want to create a VM from a live Windows box, which this isn't.

My colleague is able to use VirtualBox to create a VM from the VHD and I want to do the same using Parallels Desktop 6.

Any ideas?

4

5 に答える 5

20

Parallelsは、仮想ハードディスクではなく仮想マシンをインポートするように設計されています。VHDは単なるハードディスクであり、マシンについて何も指定しません。

したがって、答えは、VHDを使用する単純な仮想マシンを作成する必要があるということです。Parallelsはそれをインポートできます(Parallels 7については、以下のfttの回答を参照してください)。これを行うには、拡張子.vmcが次のような単純なUTF-8テキストファイルを作成します。

<?xml version="1.0" encoding="UTF-8"?>
<preferences>
<version type="string">2.0</version>
<hardware>
<pci_bus>
<ide_adapter>
<ide_controller id="0">
<location id="0">
<drive_type type="integer">1</drive_type>
<pathname>
<absolute type="string">/Users/Shared/VirtualPC/BaseDrive.vhd</absolute>
<relative type="string">BaseDrive.vhd</relative>
</pathname>
</location>
</ide_controller>
</ide_adapter>
</pci_bus>
</hardware>
</preferences>    

.vhd上記の参照をVHDファイルの実際の場所に変更してください。

上記のコードは、ParallelsフォーラムのParallelsチームメンバーによる推奨からのものです。

于 2011-03-03T03:20:15.740 に答える
10

Parallels 7 の場合は、次を試してください。

$ /Library/Parallels/Parallels\ Service.app/Contents/PlugIns/Parallels\ VM\ Converter.app/Contents/MacOS/prl_convert your_disk_image.vhd

ここにあります。元の投稿は Parallels 6 に関するものだったので、そこでも機能するはずです。

于 2011-11-25T13:03:00.357 に答える
0

これは私にとってはうまくいきます:

Microsoft VHD と Parallels 6 を搭載した Mac で Internet Explorer をテストする

目的の Win/IE コンボを次からダウンロードします: http://www.microsoft.com/en-us/download/details.aspx?id=11575

Mac で *.exe ファイルを抽出するには、http://www.unrarx.com/を使用します。

CDダウンロード

/Library/Parallels//Parallels\ Service.app/Contents/PlugIns/Parallels\ VM\ Converter.app/Contents/MacOS/prl_convert "Windows 7.vhd"

Parallels を実行します。パスワードでログイン: Password1

http://www.ericmichaelstone.com/?p=5962

于 2013-01-30T02:14:36.887 に答える
0

HDD を ISO に変換する必要があります。これは、変換プロセスを実行する予備の Windows マシンがあれば簡単に実行できます。GImageXという名前のソフトウェアが必要になります。

このビデオをチェックしてください。また、必要に応じてこれを読むこともできます。

頑張ってください。結果を投稿してください。

于 2010-11-28T03:09:21.813 に答える