PBS single disk restore

seyed514

New Member
May 22, 2023
5
0
1
Hi
I need to restore the backup from pbs but my backup has more than one disk and I need to restore each disk individually to the correct path on the destination node

After reading the documentation and forum discussions, I want to use this approach:

Bash:
proxmox-backup-client map vm/123456/2023-05-22T06:32:25Z drive-virtio0.img


proxmox-backup-client map vm/123456/2023-05-22T06:32:25Z drive-virtio1.img


qemu-img convert -p -O qcow2 /dev/loop0 /ssda/vm-123456-disk-0.qcow2


qemu-img convert -p -O qcow2 /dev/loop1 /ssdb/vm-123456-disk-1.qcow2


proxmox-backup-client restore vm/123456/2023-05-22T06:32:25Z qemu-server.conf /etc/pve/qemu-server/123456.conf

Is this approach approved and reliable? Are there any side effects I should be aware of?