typos
←Older revision | Revision as of 12:37, 29 June 2010 | ||
Line 4: | Line 4: | ||
=== Disk Recovery === | === Disk Recovery === | ||
- | I had problems with my home computer and lost one | + | I had problems with my home computer and lost one hard drive. Alas, it contained collection of my family photos and videos collected during last ten years. No problem, I though, I have a backup. However to make things worse, the backup hard disk is also slightly damaged! It contains about 1% of back blocks. What shall I do now? |
I tried various tricks, but usual copy programs just stop when they see a broken bit in a file. They prefer correctness. Rather copy nothing than produce not perfect result! Nice contribution to my favorite [[MartinRinard]] presentation: [[Image:RinardOOPSLA06.pdf]]. | I tried various tricks, but usual copy programs just stop when they see a broken bit in a file. They prefer correctness. Rather copy nothing than produce not perfect result! Nice contribution to my favorite [[MartinRinard]] presentation: [[Image:RinardOOPSLA06.pdf]]. | ||
Line 13: | Line 13: | ||
<source lang="bash"> | <source lang="bash"> | ||
- | rsync -ruv -P --ignore-existing /misc/ | + | rsync -ruv -P --ignore-existing /misc/damaged-disk/ /misc/newbackup/ |
</source> | </source> | ||
- | Such operation takes ages (the I/O timeout is way to high and I don't know how to decrease it), but it | + | Such operation takes ages (the I/O timeout is way to high and I don't know how to decrease it), but it does the trick. All files are copied, some of them with errors, but usually just insignificant, so the picture or video still looks acceptably. |
=== Digital Aging === | === Digital Aging === | ||
- | From time to time there are little ''flashes'', when the playback is | + | From time to time there are little ''flashes'', when the playback is damaged, but at least it is clearly visible that the recording is old! Which remains me: we are used to the fact that analog recordings age and get worse over time. I never expected something like that in digital era, but it just happened: some bits from my files are gone, damaged, yet most of the information is still there. My digital bits are aging! However thanks to [[Rsync|rescue sync]] and its relaxed ability to work with imperfect files I still have now good enough (yet aged) family album with me. |
<comments/> | <comments/> |