[SOLVED] Need help with dd !!!
Partition backup image created as follows:
Code:
dd if=/dev/hda3 conv=sync,noerror bs=64K | gzip -c > nc6000_linux_system.img.gz
Trying to restore the partition from the image as follows:
Code:
gunzip -c nc6000_linux_system.img.gz | dd of=/dev/hda3 conv=sync,noerror bs=64K
The dd operation fails with the following message:
Code:
dd: writing '/dev/hda3': No space left on device
3673+348340 records in
352012+0 records out
23069491200 bytes (23 GB) copied, 713.275 s, 32.3 MB/s
Why is there no space left? I'm restoring the same partition, from which the image is made.
What am I doing wrong?
Can someone help me please? I do not understand if my partition image is faulty, or I do not know how to restore it.