The sinking feeling when a drive fails is universal. Whether it's a laptop that won't boot, a clicking external drive, or a partition that simply vanished, the outcome depends almost entirely on what you do in the next few minutes. Most data is recoverable — but only if you avoid the mistakes that permanently destroy it. This is the 2026 playbook.
What changed in 2026
- NVMe SSDs are now the dominant failure type in laptops — and they fail differently from HDDs. Controller failures are common; physical damage to NAND chips is harder to DIY recover.
- ddrescue is now the standard first step on Linux and macOS; it's far better than dd for failing drives because it retries bad sectors intelligently.
- Windows 11 added improved drive health monitoring via S.M.A.R.T. in Settings → System → Storage — check this proactively on any drive over 3 years old.
- Professional recovery labs dropped prices on SSD controller recovery to ~$500–$1,500 for consumer drives (was $2,000+), making pro recovery more viable.
Diagnosing the failure type
| Symptom |
Likely cause |
DIY chance |
| Drive appears but files are gone |
Accidental delete / format |
High |
| Drive appears but partition missing |
Partition table corruption |
High |
| Drive very slow, bad sectors |
HDD degradation |
Medium |
| Drive not detected at all (HDD clicking) |
HDD head failure |
Low — lab |
| Drive not detected (SSD, no sound) |
Controller failure |
Medium with right tools |
| Drive appears but encrypted (BitLocker/FileVault) |
Need the recovery key |
n/a — keys, not recovery |
Step 1 — stop writing to the drive
Unplug it if it's a secondary drive. If it's your boot drive: boot from a USB live OS (Ubuntu Live, System Rescue) so the failing drive is not being written to by the OS.
Do NOT run disk repair tools, chkdsk, fsck, or format — these overwrite data.
Step 2 — clone the drive before anything else
If the drive is partially readable, clone it first. Work from the clone.
On Linux/macOS with ddrescue:
sudo apt install gddrescue # or brew install ddrescue on macOS
sudo ddrescue -d -r3 /dev/sdX /dev/sdY recovery.log
Replace /dev/sdX with the source drive and /dev/sdY with your destination (must be same size or larger). The .log file lets you resume if interrupted.
On Windows: Use Macrium Reflect Free or HDClone Free for a sector-by-sector clone via a GUI.
Step 3 — recover files from the clone
TestDisk (free, all platforms) — recovers lost partitions and makes non-bootable disks bootable again:
sudo testdisk /dev/sdY
Follow the wizard: select the disk → Intel/PC → Analyse → Quick Search → look for lost partitions → Write.
Photorec (bundled with TestDisk) — recovers individual files by carving raw data, bypassing the filesystem entirely. Use this when the partition is damaged beyond repair. It recovers photos, documents, video, and more.
Recuva (Windows, free) — simpler GUI for accidental deletes on a healthy partition.
R-Studio (~$80, Windows/macOS/Linux) — the best-value commercial option for complex cases.
Costs at a glance
| Option |
Cost |
Best for |
| TestDisk / Photorec |
Free |
Partition loss, accidental format |
| Recuva |
Free |
Accidental delete, Windows |
| R-Studio |
~$80 |
Complex filesystem damage |
| Professional lab (clean room) |
~$500–$2,500+ |
Physical HDD failure, SSD controller |
When to stop DIY and call a lab
- The drive is clicking, grinding, or buzzing — mechanical failure. Spinning it more makes it worse.
- An NVMe SSD that isn't detected at all and the data is critical.
- You've already run recovery tools and found nothing — a lab has hardware-level tools you don't.
Labs like DriveSavers, Ontrack, and Secure Data Recovery operate in clean rooms. Expect ~$500–$2,500 for HDDs with head failures; NVMe controller recovery can run higher for proprietary chips.
How to choose your approach
| Data value |
Drive readable? |
Action |
| Low, drive readable |
Yes |
Photorec or Recuva directly |
| Medium, drive readable |
Partially |
Clone with ddrescue, then TestDisk |
| High, drive not readable |
No |
Professional lab — don't DIY further |
| Any, encrypted |
Depends |
Recover the key first — no key = no data |
Common mistakes
Running chkdsk on a failing drive. It marks bad sectors and overwrites file data in the process. Use it only on healthy drives.
Recovering files to the same drive. Always recover to a different drive — you can overwrite the files you're trying to save.
Waiting too long. The more a failing HDD is used, the more head damage spreads. Image it now.
Ignoring S.M.A.R.T. warnings. A drive showing reallocated sectors, pending sectors, or uncorrectable errors is about to fail. Back up immediately.
What to skip
- Freezer trick for clicking HDDs — urban legend. It doesn't work on modern drives and may void any lab warranty.
- "Free" recovery services that ask for your credit card before showing results.
- Running multiple recovery tools simultaneously on the same source drive — pick one, let it finish, then try another if needed.
FAQ
Can I recover data from a formatted drive?
Often yes — a quick format only wipes the filesystem metadata, not the data blocks. Photorec or R-Studio can carve files. A full/overwrite format is harder but still sometimes possible.
Does SSD TRIM make recovery impossible?
TRIM marks deleted blocks as free and the controller may wipe them immediately. On a failed SSD that powered off suddenly, TRIM may not have run — recovery is still possible.
How long does data recovery take?
DIY clone of a 1 TB HDD with bad sectors: 4–24 hours. Photorec scan: 1–4 hours. Professional lab: typically 1–5 business days.
How much does a professional lab cost?
Expect ~$500–$800 for standard HDD cases, ~$1,000–$2,500 for clean-room work on severely damaged drives. Get a free evaluation quote before committing.
Where to go next
See How to sync files across devices in 2026, How to set up Time Machine in 2026, and How to upgrade to an SSD in 2026.