Live data from Hacker News

SSD crash: how I almost lost my home-drive but got almost all data back

flockaroo.at

1–4 of 4 posts

Re: SSD crash: how I almost lost my home-drive but got almost all data back

#3
In case the author is reading:

> first i tried to "dd" the whole disk to a file, but every time an input /output error occured, dd would of course stop.

This is exactly the purpose of the "noerror" option to dd -- to tell dd to continue reading even when an error returns from the disk.

Re: SSD crash: how I almost lost my home-drive but got almost all data back

#4
post #3

In case the author is reading: > first i tried to "dd" the whole disk to a file, but every time an input /output error occured, dd would of course stop. This is exactly the purpose of the "noerror" option to dd -- to tell dd to continue reading even when an error returns from the disk.

ah, cool! thanks for the hint ...if only i knew then ;-)