mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 22:41:36 +00:00
18 lines
552 B
Plaintext
18 lines
552 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# virt-clone
|
|
|
|
> Clone a libvirt virtual machine.
|
|
> More information: <https://manned.org/virt-clone>.
|
|
|
|
- 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}}`
|