On ESXi Free, there is no possibility to clone a virtual machine from the GUI.
This details how to clone a virtual machine from the command line.
cd into the datastore
For example:
cd /vmfs/volumes/datastore
Create a new directory for the clone:
mkdir vm-name-clone
cd vm-name-clone
Clone the disk using the following command
vmkfstools -i /vmfs/volumes/datastore/vm-name/disk-name-000001.vmdk ./disk-name.vmdk -d thinThis will create a clone of the disk, thin provisioned.
scsi0:0.fileName = "disk-name-000001.vmdk"To this:
scsi0:0.fileName = "disk-name.vmdk"
That's it. The new VM is ready to use or to be copied somewhere else.