Hi, how can I convert the storage type of VMs from being stored in individual qcow2 files to being stored in a storage pool? The VMs may be shut down during the conversion.
On Thu, Aug 1, 2019 at 2:50 PM hw <hw at gc-24.de> wrote:> > Hi, > > how can I convert the storage type of VMs from being stored in > individual qcow2 files to being stored in a storage pool? > > The VMs may be shut down during the conversion. >qemu-img convert -O {output_type} {inputfile} {output_file or pool path}
On 8/1/19 10:19 PM, Jon Pruente wrote:> On Thu, Aug 1, 2019 at 2:50 PM hw <hw at gc-24.de> wrote: > >> >> Hi, >> >> how can I convert the storage type of VMs from being stored in >> individual qcow2 files to being stored in a storage pool? >> >> The VMs may be shut down during the conversion. >> > > qemu-img convert -O {output_type} {inputfile} {output_file or pool path}Thanks!