>>>>> "Deep" == Manager <[EMAIL PROTECTED]> writes:
Deep> Hello,
Deep> suppose I have a linux root partition /dev/hda1 on which I
Deep> run dd to capture the whole image of the partition to a file
Deep> say.. backup.dd. now in case of a crashed /dev/hda1 ..will I
Deep> be able to restore each byte of it including
Deep> System/boot/data blocks by giving command dd if=./backup.dd
Deep> of=./dev/hda1.....
Why would you want to use dd for this? Dd will suffer from the
following drawbacks:
1. Unused space will also be backed up
2. You cannot restore onto anything except an exact mirror (size-wise)
of the backed-up partition
3. You cannot restore selective files
4. You cannot view the contents of the archive.
Use Tar or even Cpio to back up your data.
Deep> Please clarify
Deep> ONe more question.....
Deep> How do I do disk mirroring in Linux ?
Compile the MD driver into your kernel, get the utilities as specified
in the kernel config help
(/usr/src/linux/Documentation/Configure.help) and use them for
achieving RAID 0,1,5
-- Raju