From 06bcfd34f08f89bf7562a570320f25e0678622e7 Mon Sep 17 00:00:00 2001 From: Adam Herst Date: Wed, 21 Apr 2021 13:09:00 -0400 Subject: [PATCH] virt-clone: add page (#5800) --- pages/common/virt-clone.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pages/common/virt-clone.md diff --git a/pages/common/virt-clone.md b/pages/common/virt-clone.md new file mode 100644 index 0000000000..8eb6f36cb2 --- /dev/null +++ b/pages/common/virt-clone.md @@ -0,0 +1,12 @@ +# virt-clone + +> Clone a libvirt virtual machine. +> More information: . + +- Clone a virtual machine and automatically generate a new name, storage path, and MAC address: + +`virt-clone --original {{vm_name}} --auto-clone` + +- Clone a virtual machine and specify the new name, storage path, and MAC address: + +`virt-clone --original {{vm_name}} --name {{new_vm_name}} --file {{path/to/new_storage}} --mac {{ff:ff:ff:ff:ff:ff|RANDOM}}`