My laptop comes with a program called "Acer Recovery Management", which allows you to make a bootable recovery USB stick, from which you can boot to recover the computer to its original state.
Now, of course (I don't know why Acer didn't think about this) I don't want to give up a perfectly usable USB stick – which BTW needs to be at least 16 GB – to be a 'recovery disk' that I will probably never use anyway. But I still want to make it, just in case.
So, is there a way to convert the data on this bootable USB to an ISO file (or format), so that I can keep it on an external hard drive somewhere instead of a USB stick, and in case of problems convert the ISO back into a bootable USB with e.g. unetbootin?
bs=4M status=progress
to make IO faster and see write progress. Command will look likesudo dd if=/dev/sdx of=/path/to/new.iso bs=4M status=progress
. – MainActivity Dec 04 '18 at 13:41dd ... bs=4M status=progress
which shows the progress. And then I noticed that the data transfer rate was initially OK (at 10+ MB/s on a USB2 device), but then somehow dropped to crawling (at several KB per second) when reading the supposedly empty data. So, it was not practical. Regardless, I doubt whether this would actually work.dd
can be a backup/restore tool, but its raw output format would not necessarily be ISO9660 format. @irwinr voiced same concern above. – RayLuo Nov 29 '20 at 02:24