Playing with KVM and OpenStack I wanted to create a custom Linux virtual machine template. The easiest way to do this is to first create a blank disk using the qemu-img command.
qemu-img create -f qcow2 /path/to/systemname.qcow2 20G
Here we specify the format as qcow2 with the -f switch, the path to where we want to create it, and the size by specifying 20G.… Read the rest
The post Using virt-install to create a virtual machine template for OpenStack appeared first on vmware admins.