1. List of backup (Proxvom VE)
pvesm list 192.168.1.15 | grep 915
2. Restore VM from backup to new VM without LVM store.
qmrestore 192.168.1.15:backup/vm/915/2023-02-01T14:11:10Z 916 --storage PVE-raw
3. Move disk another store
mv /mnt/pve/PVE-raw/images/916/vm-916-disk-0.raw /mnt/pve/PVE-raw/images/template-916.raw
4. Destroy VM
qm destroy 916
5. Convert VM .
qemu-img convert -f raw -O qcow2 /mnt/pve/PVE-raw/images/template-916.raw /mnt/pve/PVE-raw/images/template-916.qcow2
This path is not comfortable and long.
Maybe there is an opportunity to somehow download the VM disk directly from the node via the CLI
pvesm list 192.168.1.15 | grep 915
2. Restore VM from backup to new VM without LVM store.
qmrestore 192.168.1.15:backup/vm/915/2023-02-01T14:11:10Z 916 --storage PVE-raw
3. Move disk another store
mv /mnt/pve/PVE-raw/images/916/vm-916-disk-0.raw /mnt/pve/PVE-raw/images/template-916.raw
4. Destroy VM
qm destroy 916
5. Convert VM .
qemu-img convert -f raw -O qcow2 /mnt/pve/PVE-raw/images/template-916.raw /mnt/pve/PVE-raw/images/template-916.qcow2
This path is not comfortable and long.
Maybe there is an opportunity to somehow download the VM disk directly from the node via the CLI