Data Recovery in Linux - How To Recover Your Data after Drive Failures

Check out this guide on basic Data Recovery in Linux to get back files from corrupt SD cards or that you may have deleted in error.

By Tim Trott | Linux Tips and Tutorials | June 15, 2012
Introduction to Linux

This article is part of a series of articles. Please use the links below to navigate between the articles.

  1. How to Download and Installing Linux Step by Step For Beginners
  2. Essential Guide to Working with Files in Linux
  3. Understanding Linux File Permissions and Permission Calculator
  4. How to Archive, Compress and Extract Files in Linux
  5. Linux Piping and Redirection Explained
  6. Hardlinks and Softlinks in Linux Explained With Examples
  7. How to Create and Use Bash Scripts in Linux
  8. Data Recovery in Linux - How To Recover Your Data after Drive Failures
  9. Apache Web Server Administration Cheat Sheet for Linux
  10. Essential MariaDB and MySql Administration Tips on Linux
  11. How to Switching from Windows to Linux - A Complete Guide

Too busy doing 6 things at the same time and during a slight loss of concentration I've deleted files which I need! What do I do? How do I get them back? How do I undelete files in Linux?

The first thing to do is "Don't Panic!" You can recover lost files and perform basic data recovery in Linux with ease by following these instructions.

Most, if not all, filesystems will only delete the reference to the file from the partition table. This means that the data is still available but the link to it has gone and it is possible to easily undelete files. It is very important that you do not write any more information to the drive the files were on as the new data could overwrite the file you want to recover, making the data recovery process much more difficult.

If the files to undelete are on your boot drive then you should remove the hard drive and access it from another PC. If it isn't possible to do this then you should be very careful and do not install any software or download any files to it. Try and get hold of a data recovery CD or Live CD and boot from that instead.

Fortunately this time the files I deleted were on a secondary partition, not the boot partition. Rather than remove the drive, I was able to remount it read-only.

sudo mount -o remount,ro /mystorage/

The Linux partition is now mounted read-only so the data should be "safe".

Next, create a directory on another drive which will hold the recovered files.

sudo mkdir /mystorage2/recovery
cd /mystorage2/recovery

I'm going to be using ext undelete  for this as the files were on an EXT4 filesystem. If ext undelete is not installed you can (under Ubuntu) run the following command to install it. Other distributions may have slightly different commands.

sudo apt-get install extundelete

Once it has been installed, you can run the command to recover all files to the current directory.

sudo extundelete /dev/dm-4 --restore-all

Where /dev/dm-4 is the partition device.

After about 5 minutes, but depending on the size and quantity of data, any files that can be recovered will restore to the local path. You can now remount the filesystem read-write and save the files back to their original directory.

Slap yourself on the wrist and don't do it again!

Update: If you are using Samba shares and accidentally delete a file, you may be interested in enabling a Samba module which adds Recycle Bin functionality for Samba Shares rather than deleting them.

Was this article helpful to you?
 

Related ArticlesThese articles may also be of interest to you

CommentsShare your thoughts in the comments below

If you enjoyed reading this article, or it helped you in some way, all I ask in return is you leave a comment below or share this page with your friends. Thank you.

There are no comments yet. Why not get the discussion started?

We respect your privacy, and will not make your email public. Learn how your comment data is processed.