I had an non-backed up proxmox server that died (I know, I've learned that lesson). I was able to mount the old drive in a recovery environment and use dd to recover the vm disks to a backup disk as well as /etc/pve for all my config. For my VMs, I could use a command like
rootfs: local-lvm:vm-102-disk-0,size=32G
How do I get my /mnt/backup/vm-102-disk-0 into local-lvm? I don't want to bind to my backup disk at /mnt/backup since I don't want to keep it always connected to my server.
qm disk import 101 /mnt/backup/vm-101-disk-0 local-lvm
to import the backup vm disk and get it up and running. However, I can't find a comparable procedure for getting the rootfs backup for a lxc container into local-lvm. In my prior configuration it had been set up as rootfs: local-lvm:vm-102-disk-0,size=32G
How do I get my /mnt/backup/vm-102-disk-0 into local-lvm? I don't want to bind to my backup disk at /mnt/backup since I don't want to keep it always connected to my server.