How can I recover/undelete files from an ext4 partition?

8

4

Has anyone had success recovering deleted files from an ext4 partition? I've tried various utilities, but none have worked yet. I'd be grateful if someone can share a success story!

Peltier

Posted 2010-08-02T11:37:00.950

Reputation: 4 834

Answers

11

You may have luck with:

http://extundelete.sourceforge.net/

However, I've never used it.

Warning: typically these days, filesystems don't support undelete. Trying to recover deleted files is an exercise in computer forensics and you're going to be very lucky to get them back. In particular, if you have written any more files to the disk, chances are your deleted files will be gone forever.

David Given

Posted 2010-08-02T11:37:00.950

Reputation: 593

1Thanks! extundelete actually recovered a lot of files. The tool could be improved, though. – Peltier – 2010-08-04T12:09:32.473

10

First thing is:

  • Do not turn on your computer
  • Start it with a LiveCD or LiveUSB
  • Make a raw clone of the partition, using dd
  • Never mount the partition, but if you need to, mount as read-only

If your data is not encrypted, or is encrypted by blocks, there are tools that look for data in the disk independently of the filesystem. (e.g., photorec)

Extundelete may also do a good job, if your data has been written to the disk or accessed recently, and neither their inodes nor the corresponding data sectors have been overwritten by other files after you deleted.

If the files were inside a stack-encrypted home directory, you can check this.

user39559

Posted 2010-08-02T11:37:00.950

Reputation: 1 783

+1 for being thorough. Might be a bit much for this situation, but definitely not bad first steps. – Aeo – 2010-08-17T16:47:43.513

1

What worked for me was given by arch (only applies to text files):

grep -a -C 200 -F 'Unique string in text file' /dev/sdXN

Takes a little while, but worked when I accidentally deleted some source code I hadn't commited yet!

William Becker

Posted 2010-08-02T11:37:00.950

Reputation: 111

-1

It depends on how you deleted the files. If you used a graphical file manager you may have "Trash". If you used mc you may have "lost&found". If you used "rm" you have very little to zero chances to recover the file.

Patkos Csaba

Posted 2010-08-02T11:37:00.950

Reputation: 1 542