Bare metal restore?

EllyMae

Member
Jul 20, 2022
134
10
23
The proxmox-back-client says this:

Code:
To create a backup of a block device, run the following command:
# proxmox-backup-client backup mydata.img:/dev/mylvm/mydata

Creating Backups

Does this imply that I can also restore the block device? What if the block device is the system that I booted from? How can I restore that?

Thanks for your thoughts.
 
First you shouldn`t backup a block device that is in use. And of cause you also shouldn`t restore to device that is in use.
Solution here was to install Debian to a USB Stick, add the proxmox-backup-client to it and then boot into that Debian each time you want to backup or restore the PVE system disks.
 
Last edited:
  • Like
Reactions: EllyMae
restoring directly to a block device is not supported AFAIR (restoring to a new raw image file is though) - but you can map the backup snapshot and then use dd or similar tools to transfer it.
 
  • Like
Reactions: EllyMae
Thanks, guys. That is the same approach I have been using with Clonezilla.

but you can map the backup snapshot and then use dd or similar tools to transfer it.
So, there is no compression going on, like Clonezilla usually does.
 
there is compression (zstd ;)), but the mapped block device will decompress on the fly when retrieving chunks from the PBS server, just like a restore would :)
 
  • Like
Reactions: EllyMae
there is compression (zstd ;)), but the mapped block device will decompress on the fly when retrieving chunks from the PBS server, just like a restore would :)
Thanks, Fabian. I don't yet know what mapping is in a Linux context. I'll need to read up on that. Would you recommend a place to start?
 
it refers to running proxmox-backup-client map ... to expose a fidx archive from a backup snapshot on a PBS server as a local block device. when you read from the resulting loopback block device, the client will fetch the corresponding chunks from the PBS server, so you can use any software capable of reading block devices for accessing the backup contents, without requiring any special PBS integration.
 
  • Like
Reactions: EllyMae