最も便利なのは単純です:
# virt-clone --connect=qemu://example.com/system -o this-vm -n that-vm --auto-clone
this-vm
のコピーを作成します 、名前 that-vm
、ストレージ デバイスの複製を処理します。詳細を除いて、ここには新しいものはありません。
要点を言えば、FAQ が言っているのは、XML ドメインの説明は直接編集できないということです。 libvirt. virt-clone
の手順を完了するには コマンドで、次のことができます:
source_vm=vm_name
new_vm=new_vm_name
# You cannot "clone" a running vm, stop it. suspend and destroy
# are also valid options for less graceful cloning
virsh shutdown "$source_vm"
# copy the storage.
cp /var/lib/libvirt/images/{"$source_vm","$new_vm"}.img
# dump the xml for the original
virsh dumpxml "$source_vm" > "/tmp/$new_vm.xml"
# hardware addresses need to be removed, libvirt will assign
# new addresses automatically
sed -i /uuid/d "/tmp/$new_vm.xml"
sed -i '/mac address/d' "/tmp/$new_vm.xml"
# and actually rename the vm: (this also updates the storage path)
sed -i "s/$source_vm/$new_vm" "/tmp/$new_vm.xml"
# finally, create the new vm
virsh define "/tmp/$new_vm.xml"
virsh start "$source_vm"
virsh start "$new_vm"
「virt-clone」以外に、次の方法で VM を複製できます:
<オール>
virsh
サーバーの XML 定義を編集、エクスポート、およびインポートできます。 virt-clone
を使用します 複製された画像ファイルを生成し、XML をエクスポートします。安全のために、元のサーバーからクローン構成を削除します。