My memory card was found yesterday, but I found the photos stored in it have gone, is it possible to restore them back? If so, how? Please recommend some affordable program and works for my memory card, thanks.
2 Answers
Photorec
This software is part of the testdisk
suite, specifically designed to recover images from a partially overwritten or otherwise damaged drive.
There is an extremely helpful step-by-step guide written by the makers of PhotoRec which I recommend you follow:
In case you have Ubuntu installed you can run PhotoRec in a terminal after installation of the TestDisk suite but you can also do so from a live system as further elaborated in my answer to the following questions:
We should try to recover our files from an image we created from the memory card by running the following command (see also this question) in a terminal:
sudo dd if=/dev/sdX of=/home/<user>/<path>/rescue.dd
Replace sdX with the appropriate value for your memory card, and replace /<user>/<path>/ with your path for the rescued file. Be extra careful to get the command right, dd is an advanced tool!
We can then recover files from this image with:
photorec rescue.dd
Deleted or lost files can sometimes be recovered from failed or formatted drives and partitions, CD-ROMs and memory cards using the free/libre software available in the Ubuntu repositories.
- 346