Virtual-Machines

使用Google計算引擎映像的 Hyper-V 虛擬化

  • October 29, 2018

我正在嘗試從 Google Cloud Platform 中的 Google Compute Engine VM 實例下載圖像,並且我正在按照本文將圖像導出到 GCS 儲存桶並在本地下載。出於測試目的,我需要在本地 Hyper-V VM 中還原/導入此映像。

如何從 GCE 映像虛擬化 Hyper-V VM?

如果您下載的文件是虛擬硬碟驅動器的原始映像,則您需要先將其轉換為 VHD 或 VHDX。VirtualBox 中可用的工具非常適合這種情況。

VBoxManage.exe clonehd "diskimage.img" "diskimage.vhd" -format vhd

或者

VBoxManage.exe clonehd "diskimage.img" "diskimage.vhdx" -format vhdx

引用自:https://serverfault.com/questions/937699