How to create an ISO image of a partition on an external hard drive

disk-imagehard drivepartitionqemuvirt-install

I see that there is a similar question with the answer to use BartPE with a plugin, but are there any other methods to create an ISO image from an external hard drive partition? I don't feel too good about using a plugin for a program that isn't exactly well-known to copy my hard disk.

For background on what I'm trying to do, I'm going to use virt-install with QEMU to install the ISO on an LVM. If I cannot do this, I'm going to use Xen as per my other question.

Best Answer

mkisofs -o /tmp/backup.iso /mnt/externalPartition
Related Topic