I've had my doubts about folks behind proxmox in the past. This thread has confirmed them. Some of the worst customer relations I have ever seen. I am using one instance of proxmox. As soon as I can, I will be removing it and moving to something written and managed by adults.
Is it possible to use another format for backup? I want to be able to extract my backups on centos/fedora hosts.
May be i am mistaking but dont we still have choice of LZO or GZIP in Proxmox VE 3.3?until 3.1, at least, there was a choice between lzo (default) and gzip, I still have that old version
Marco
May be i am mistaking but dont we still have choice of LZO or GZIP in Proxmox VE 3.3?
Nice... are you still using that, Antti?
Is it possible to use another format for backup? I want to be able to extract my backups on centos/fedora hosts.
zstd -d vzdump-qemu-$VMID....vma.zst
vma extract vzdump-qemu-$VMID....vma ./$DESTINATION
it will give you a .raw file (disk image ) and a .conf file (VM Config)qemu-img convert -p -f raw $SOURCE.raw $DESTINATION.vmdk
will probably do the job.does not work for me and i am about to lose all my. life jobthe new backup works great, solved a lot of problems for us and our customers.
instead of crying like a baby make sure that your backup strategy is working, do testing and make sure you can do restores.
the format is open, so if you want to add other tools feel free to develop it. we and our community developers do not need this, so we do not developed it so far. as you are not on our customer list, you probably missed some info and direct communication with our team. feel free to join.
I recommend you calm down and respecting the forum rules, be friendly and thankful for help.
sudo apt install zstd
zstd --decompress vzdump-qemu-205-2020_06_05-13_25_00.vma.zst
Thank you. I didn't know that!VMA does not store files/directories like a tar archive, it's a simple archive format for storing raw disk image data. you can extract the contained disk images or config blobs with thevma
binary.
vma
binary, would it extract those things as files?you get the disk image out as anything our qemu binaries understand (e.g., raw images/block devices, qcow2, ...). the configs/blobs are just raw bytes. VMA will likely not become a standalone package in regular distros, it requires a patched Qemu build. the format is easy enough and could be implemented with just raw binary output of course, but that is not something that PVE requires since we have the regular/full vma binary available anyway.Thank you. I didn't know that!
However, if I were to extract the disk images and config blogs using thevma
binary, would it extract those things as files?
If so, I still hope VMA evolves to become a package in the repositories of all distributions, just so that I can use popular tools like Ark to see just those files (without having to deal with a binary that's not included in the Linux repositories).