132
Hello,
I've used imageUSB to make a backup of an usb drive with mbr and 2 ext4 partitions (it has a linux distro installed on it)
All worked fine.
The question is, is it a propretary format or can i open it with other tools open source or not?
Most importantly, can i use linux's dd to restore from the bin to a drive ?
I've seen a custom header, how long in bytes is it ?
For instance, can i do a
where /dev/sdb would be the flash drive to restore to and
where the skip value would mean 1*block size or 2 or 4 depending on imageUSB's custom header length in the bin file.136
Hello,
I've used imageUSB to make a backup of an usb drive with mbr and 2 ext4 partitions (it has a linux distro installed on it)
All worked fine.
The question is, is it a propretary format or can i open it with other tools open source or not?
Most importantly, can i use linux's dd to restore from the bin to a drive ?
I've seen a custom header, how long in bytes is it ?
For instance, can i do a
dd if=image.bin bs=512 skip=[1/2/4] of=/dev/sdb
where the skip value would mean 1*block size or 2 or 4 depending on imageUSB's custom header length in the bin file.136
Comment