Raspberry Pi Recovery

Raspberry Pi Recovery: How to Recover Data from Your Raspberry Pi SD Card

Last updated:

No robots used, our articles are crafted by humans under strict Editorial Guidelines.

Written by David Morelo David Morelo Staff Writer β€’ 52 articles David Morelo is a technical staff writer for Handy Recovery. He is an essential member of the Handy Recovery team, known for distilling complex data recovery and data management topics into terms that are easily understandable. David was a key figure in the origin of our project in 2017 and authored many of the first articles that appeared on our site. LinkedIn Approved by Andrey Vasilyev Andrey Vasilyev Editor Andrey Vasilyev is an Editorial Advisor for Handy Recovery. Andrey is a software engineer expert with extensive expertise in data recovery, computer forensics, and data litigation. Andrey brings over 12 years of experience in software development, database administration, and hardware repair to the team. LinkedIn
Quick summary

The Raspberry Pi is a tremendously useful little computer that can perform a wide range of wonderful tasks. Like many electronic devices these days, it stores data on an SD card. Unfortunately, SD cards are not 100% percent reliable, and they certainly don't protect users against their own file management mistakes, so it doesn't take much to lose valuable data. But don't worry; there are several ways to recover a Raspberry Pi SD card, and we cover them in this guide.

Jump to:

Can You Recover Data from a Raspberry Pi SD Card?

RPi SD card data loss causes

Recovery chances

Explanation

😧 Accidental deletion

High

The default file system of Raspberry Pi OS and most other operating systems for the RPi uses the ext4 file system, which, when a file is deleted, only removes the information pointing to its location on the storage device. The actual file remains intact until overwritten with new data.

🧹 Formatting

High (usually)

The most commonly used formatting method (called Quick format in Windows) merely recreates the file system structure without overwriting stored data, so it’s possible to recover data from a Raspberry Pi SD card that has been formatted. On the other hand, more secure formatting methods, such as Full format in Windows, make recovery impossible.

⚑ Power failure or improper shutdown

High

If the power failure occurs while the SD card is being written, there is a chance of data corruption. The good news is that it’s rare for power failures and improper shutdowns to corrupt a large number of files at the same time. What’s more, the corrupted files can usually be recovered (sometimes with defects) using data recovery software.

πŸ“› SD card failure or corruption

Medium

SD cards are divided into sectors, which are grouped into blocks. These blocks are used by the SD card’s firmware for wear-leveling. When too many blocks fail or become corrupted, the SD card may become unusable. The data stored on it, however, should still be repairable and recoverable using the techniques described in this article.

β›” RPi hardware failure

Medium

If the Raspberry Pi hardware has failed, then it may be possible to recover data from the SD card by connecting it to another Raspberry Pi or computer with a card reader (built-in or one that works like a USB flash drive). Just know that some hardware failures, especially those that cause large voltage spikes, can damage the delicate components inside of the connected SD card.

πŸ’£ Physical SD card damage

Low

A physically damaged SD card that’s in such a bad shape that it can’t be recognized by any device may be impossible to recover data fromβ€”at least while relying only on the below-described methods to recover files from a Raspberry Pi SD card. Best SD card recovery services are sometimes able to extract data from physically damaged SD cards, but there’s no guarantee.

As the table above explains, it’s often possible to recover data from a Raspberry Pi SD card, and the following three factors have the biggest influence on data recovery outcomes:

  • 🧹 Deletion/formatting method: Standard deletion and formatting methods affect only file system entriesβ€”not the actual data that’s being deleted. As such, they leave the possibility for data recovery using Raspberry Pi recovery techniques. However, there are deletion and formatting methods that can securely erase data from an SD card by overwriting it with zeroes or random data patterns. Such methods make Raspberry Pi recovery impossible.
  • πŸ•‘ Time since deletion: The length of time between the data loss and the recovery attempt can have a significant impact on the chances of successful data recovery. That’s because as time passes, the risk of lost data being overwritten increases. That’s why you should attempt to recover your data as soon as you can.
  • πŸ”₯ Type of damage: In general, Raspberry Pi SD cards can suffer from logical and physical damage. Logical damage refers to damage that affects the file system or data structure on the SD card, while physical damage refers to damage to the physical components of the card. Both types can result from a variety of causes, but only data lost to logical damage can be recovered using the methods below.

Understanding these factors is critical when attempting to recover lost data from your Raspberry Pi SD card. Now that’s out of the way, we can dive into some of the most effective methods for recovering files from a Raspberry Pi SD card.

πŸ‘€

Note: The same factors also impact your chances of successfully recovering deleted files from SD cards in general.

How to Recover Files from a Raspberry Pi SD Card

In this section, we will explore some of the most effective methods for recovering files from a Raspberry Pi SD card on all major operating systems, starting with Linux. If you’re not using Linux, then you can jump to the Windows/macOS section.

The choice of the solutions below was made based primarily on their ability to recover data from the ext4 file system, the default file system of Raspberry Pi OS, Raspbian, Ubuntu for Raspberry Pi, and other RPi-compatible operating systems.

If your RPi microSD card, microSDXC card, or SD card is formatted with a different file system, such as ext3, ext2, or even FAT32, then these solutions (except for the first one) will still work, but your results may vary.

Recover Files from a Raspberry Pi SD Card on Linux

Since Raspberry Pi users are used to the Linux operating system, let’s start with methods for recovering files from a Raspberry Pi SD card on Linux.

While you could recover your memory card directly on your Raspberry Pi, we recommend you remove the SD card from your Raspberry Pi and connect it to a Linux computer using an SD card reader. Why? Because you want to minimize the risk of further data loss as much as possible, and that means not performing any write operations on the SD card.

Option 1: extundelete

One of the most effective tools to recover deleted data from a Raspberry Pi SD card is extundelete. This open-source utility uses information stored in the partition journal of your SD card to recover deleted files from ext3- and ext4- formatted partitions.

With a bit of luck, extundelete should be able to restore Raspberry Pi SD card files with their original file names intact. Most major Linux distributions, including Ubuntu and Fedora, have extundelete in their repositories, so you should be able to install it just like any other software application.

Once you have the utility installed, you can use the following command to attempt to recover data from your Raspberry Pi SD card (replace /dev/sdxX with the actual device name of your SD card data partition):

extundelete /dev/sdxX --restore-all

extundelete

If you’re not sure what the name of your SD card data partition is, then you can use the following command to list all partitions:

sudo lsblk -o NAME,FSTYPE,SIZE,MOUNTPOINT

You can then find your recovered files in a subdirectory (named β€œRECOVERED_FILES”) of the current directory.

Option 2: TestDisk

Have you lost an entire partition or need to recover files from a corrupted SD card? If so, then TestDisk is the right choice. As our review of this data recovery and repair tool explains in detail, TestDisk can fix broken partition tables and copy files from deleted FAT, exFAT, NTFS, and ext2/ext3/ext4 partitions.

The application has an intimidating text-based user interface, but the actual recovery/repair process consists of simple steps. Here’s how you can use it to undelete files from an ext4 partition:

  1. Install TestDisk on your Linux distribution.
  2. Launch the application and create a new log file.
  3. Select your Raspberry Pi SD card.testdisk rpi select
  4. Select the correct partition table type.testdisk rpi partition
  5. Go to Advanced.testdisk rpi filesystem
  6. Select the ext4 partition with your lost files.
  7. Choose the List option and navigate to the folder where your files were located.testdisk rpi list
  8. Select all files you want to recover and then press “c” to copy them.testdisk rpi select files
  9. Tell TestDisk where you want to copy the selected files.testdisk rpi destination
  10. Exit TestDisk.

Just like extundelete, TestDisk recovers files by relying on file system information, which indicates where files are physically located. If this information isn’t available, then it’s time to use the following solution.

πŸ‘€

Tip: Read the official step-by-step guide to learn how to recover a lost Raspberry Pi partition using TestDisk.

Option 3: PhotoRec

PhotoRec is one of the best SD card recovery software applications (it also supports other storage devices) and not just because it’s free and open source. The tool ignores the file system and, instead, scans your storage device sector by sector, looking for recoverable files (it can recognize more than 480 file extensions). Because of how PhotoRec works, it can’t recover files with their original names, but it can save the day when extundelete and TestDisk fail.

Since PhotoRec is usually distributed with TestDisk, you may already have it installed on your Linux system if you followed the instructions for TestDisk. Here’s how to restore a Raspberry Pi SD card with it:

  1. Launch PhotoRec and select your Raspberry Pi SD card.photorec rpi select
  2. Select the partition with your lost data.photorec rpi partition
  3. Tell PhotoRec which file system the partition uses.photorec rpi file system
  4. Choose to recover the whole partition.photorec rpi whole
  5. Select a destination to save the recovered files to.photorec rpi destination
  6. Give PhotoRec some time to recover your data.photorec rpi scan
  7. Exit the application.

PhotoRec always recovers all lost files, so you may end up with a whole lot of recovered files. We recommend you filter them by file type using your favorite file browser.

πŸ‘€

Tip: For more information about PhotoRec, read its full review. The review covers everything from data recovery performance to usability.

Recover Files from a Raspberry Pi SD Card on Windows/macOS

If you have access to a Windows PC or Mac, then you can easily recover deleted files from your Raspberry Pi SD card using Disk Drill, a versatile data recovery application with an intuitive graphical user interface (you can read our full review here).

Disk Drill supports not just ext4, ext3, and ext2, but also FAT16/FAT32/exFAT, NTFS, NTFS5, HFS, HFS+, and APFS. It can even scan raw microSD, microSDXC, SDXC cards, USB flash drives, hard drives, and other storage devices.

Included with Disk Drill is a useful byte-to-byte backup tool that you can use to create a complete backup of your Raspberry Pi SD card before recovery, but you shouldn’t need to do so because the application uses non-destructive data recovery algorithms that look both for file system information and file signatures.

Here’s how to recover files from a Raspberry Pi SD card using Disk Drill:

  1. Download Disk Drill from its official website and install it on your Windows PC or Mac.disk drill macos rpi install
  2. Launch the application and select your Raspberry Pi SD card.
  3. Click Search for lost data to initiate the recovery process.disk drill scan rpi sd
  4. Analyze the found files and select the ones you want to recover. You can preview files to verify their recoverability and activate various filters to make the list of recoverable files more manageable.disk drill preview file rpi
  5. Click the Recover button and tell Disk Drill where you want it to recover files from your Raspberry Pi SD card.disk drill rpi destination select
πŸ‘€

Note: Disk Drill, just like all other similar applications, can’t recover data from a dead SD card that’s not recognized at all by Windows or macOS.

FAQ

To recover data from your Raspberry Pi SD card:

  1. Remove the card from your Raspberry Pi and connect it to a PC or Mac.
  2. Download, install, and launch Disk Drill for Windows or Mac.
  3. Scan the Raspberry Pi SD card using Disk Drill.
  4. Select files for recovery.
  5. Recover your Raspberry Pi data to your computer.

If your Raspberry Pi is working correctly, then you can access your files directly from Raspberry Pi OS:

  1. Boot into Raspberry Pi OS.
  2. Launch the File Manager application.
  3. Browse the contents of your Raspberry Pi SD card.

To reset a Raspberry Pi SD card, you need to:

  1. Remove the card from your Raspberry Pi.
  2. Connect it to your computer.
  3. Format it using Raspberry Pi Imager.

To verify your Raspberry Pi SD card, you can use the Raspberry Pi Diagnostics tool from the Accessories menu. The tool will determine whether an SD card can read and write data fast enough to provide adequate performance.

Yes, you can read a Raspberry Pi SD card on Windows. You just need to install Ext2Fsd, an open-source ext2/3/4 file system driver.

Conclusion

Losing data from a Raspberry Pi SD card is an unpleasant experience, but it’s not the end of the world because effective solutions do exist. By following the steps in this guide, you can put them to good use and recover your important files with ease. To avoid having to use them again in the future, remember to make regular backups of your Raspberry Pi SD card.

About article
Staff Writer David Morelo

This article was written by David Morelo, a Staff Writer at Handy Recovery. It was also verified for technical accuracy by Andrey Vasilyev, our editorial advisor.

Curious about our content creation process? Take a look at our Editor Guidelines.

How do you rate the article? Submitted: