My Synology says Volume Crashed. What do I do first?
A Synology Volume Crashed status almost always means a metadata failure in the mdadm, LVM, or Btrfs/ext4 stack, not physical destruction of your data. The data blocks are usually intact; the pointers to them are broken. Power the NAS down now, do not click Repair, and do not migrate the drives into another Synology. Recovery means imaging every member through a write-blocker, reassembling the SHR/mdadm and LVM stack offline with mdadm --assemble --readonly, and extracting Btrfs or ext4 read-only. All work happens at our Austin, TX lab. Free evaluation, no data = no charge.
Synology Volume Crashed Recovery
Storage Manager shows your volume as Crashed and DSM will not mount it. Before you touch anything, power the unit down. A crashed volume is rarely dead data; it is a broken metadata layer sitting on top of intact blocks. We recover crashed Synology arrays through Synology NAS data recovery built on member-by-member imaging and offline reconstruction. Every drive is cloned through a write-blocker before any analysis begins, and all work happens at our Austin, TX lab. Free evaluation, no data = no charge.

What Does Volume Crashed Mean on a Synology?
A Synology volume is a stack of standard Linux layers, not a proprietary appliance. DSM marks a volume Crashed when this stack can no longer assemble or mount cleanly. That is a metadata-layer failure: the array will not assemble, the volume group will not activate, or the filesystem tree is inconsistent. Knowing which layer failed determines whether recovery is a vanilla reassembly or a forensic filesystem walk. None of these layers are black boxes.
- 1. Physical disks and partitions
- Every member drive is partitioned identically. Partition 1 across all drives forms
md0(a ~2.4 GB RAID 1 DSM system array), partition 2 formsmd1(~2 GB RAID 1 swap), and partition 3 and up formmd2and up (the data arrays). A failed DSM update can brick md0 while md2 data survives, which is also why a migration that rewrites md0 does not automatically destroy data unless you accept a fresh install. - 2. mdadm software RAID
- The data partitions are combined into a Linux mdadm array using the standard mdadm 1.2 superblock, located at a 4 KB offset from the start of each data partition. SHR is a management overlay on top of mdadm, not proprietary silicon: SHR-1 is RAID 1 on two drives or RAID 5 on three or more, and SHR-2 is RAID 6. A healthy array assembles on any Linux workstation with
mdadm --assemble --readonly. - 3. LVM logical volume
- The Storage Pool is an LVM2 volume group built on the mdadm device. A mixed-capacity SHR stack splits each drive into size bands, builds a separate mdadm array per band, and joins them with LVM into one logical volume. The volume is activated on a workstation with
vgchange -ay. - 4. Btrfs or ext4 filesystem
- Plus-series units default to Btrfs; value-series units use ext4. The filesystem sits on the LVM logical volume. A crash here can mean a Btrfs copy-on-write tree that no longer mounts even though every disk is healthy, which is a different problem from a missing array member.
Because the entire stack is standard Linux, a crashed array reassembles on a vanilla Ubuntu or Debian workstation. No Synology hardware is required to read the disks. That single fact is what separates an honest recovery from a firm charging a premium to read a format it falsely calls proprietary.
Why Does DSM Show Volume Crashed Instead of Degraded?
Degraded and Crashed are different states at different layers, and confusing them is the single biggest cause of avoidable data loss. Degraded is a warning at the mdadm layer. Crashed is a failure at the array, LVM, or filesystem layer. Reading the exact wording in Storage Manager tells you whether your data is online, offline but present, or in a protective read-only lock.
| DSM state | What failed | Data status |
|---|---|---|
| Degraded | The mdadm array lost redundancy (one disk in RAID 5/SHR-1, two in RAID 6/SHR-2) but still assembles and mounts. | Online. A warning state, not data loss. |
| Volume Crashed | The array lost more members than its redundancy allows, or the LVM/filesystem layer above a healthy array failed. | Offline but usually physically present. |
| Crashed (Data Accessible) | Btrfs detected corruption and locked the filesystem to read-only through its copy-on-write safety mechanism. | Readable. Copy off immediately, do not repair. |
If you see Crashed (Data Accessible), copy your most important files to an external disk now and stop there. The filesystem has chosen read-only to protect itself; any repair attempt can break that protection.
Should I Click Repair in DSM?
No. Repair on a degraded array issues an mdadm rebuild, and a rebuild is the most common way a recoverable Degraded state becomes an unrecoverable Crashed one. A RAID 5 or SHR-1 array that has lost one disk must read every remaining disk in full to reconstruct the missing member.
Consumer drives are rated for roughly one unrecoverable read error per 1014 bits read, which is about 12.5 TB. A rebuild across multi-terabyte members routinely reads more than that, so the probability of hitting at least one URE mid-rebuild approaches certainty on a large array. When mdadm hits a URE on a surviving disk during a degraded rebuild, it kicks that disk too, and the array crashes. And if you reinsert the originally dropped drive to force the repair, the rebuild overwrites any historical parity left on that drive that a forensic reconstruction could have used.
This is why imaging comes before any rebuild. We clone every member to a separate disk first, then perform all reconstruction against the clones, so a URE during analysis costs nothing. Rebuilding a degraded multi-terabyte array in place, without images, is a gamble with no second attempt.
How Do SMR Hard Drives Cause Synology Rebuilds to Crash?
A common cause of phantom multi-drive failures is shingled magnetic recording (SMR), used in some WD Red drives sold before the CMR relabel and in some Seagate archive drives. SMR overlaps data tracks to raise density and relies on a small conventional cache zone to absorb writes.
A rebuild generates sustained writes. When the cache zone overflows, the drive pauses all I/O for 30 to 60 seconds while it flushes data into the overlapping shingled zones. The Linux kernel and Synology's SATA controller enforce a time-limited error recovery threshold, and DSM's mdadm interprets that 30 to 60 second stall as a dead drive and ejects it. The disk is physically healthy; SMR write timing has simply violated RAID timeout tolerances. If the array was already degraded, that ejection crashes the volume. A drive's recording technology is fixed in the platters and firmware; it cannot be converted from SMR to CMR in software.
How Can Btrfs Crash When All My Drives Are Healthy?
Btrfs is a copy-on-write filesystem. It never overwrites a live block; it writes a new version of the data or metadata and then atomically updates a pointer to it. That design protects you from torn writes, but it also means the filesystem depends on a consistent chain of metadata trees from the superblock down to the file extents.
If power is lost mid-transaction, or a read-write NVMe cache device fails and takes uncommitted metadata with it, a tree node can carry a generation number that does not match its parent. Btrfs reports a transid verify failure and refuses to mount the current root to avoid compounding the damage. Every disk can pass a SMART check and the volume still will not mount.
The previous tree generations are still physically on the disks. The correct response is to scan for older valid tree roots with btrfs-find-root, identify a consistent historical generation, and extract files with btrfs restore -t <root_id>. Running btrfs check --repair as a first step does the opposite: it prunes mismatched nodes to force a mount and can destroy the very historical metadata a clean extraction depends on.
Can I Move My Crashed Drives to a New Synology NAS?
It is tempting, because Synology supports drive migration between compatible models, and on a healthy array it works. On a crashed array it is one of the fastest ways to turn a recoverable fault into a wiped one.
When you insert the drives into a new chassis and choose Migrate, DSM rewrites partition 1 on each member, which rebuilds the md0 system array, and attempts to import the data arrays. If the array metadata is damaged, that import fails, and DSM commonly responds with a prompt to install DSM fresh, which formats the data partitions. Even when migration appears to succeed, the destination unit may begin a parity rebuild that carries the same URE and SMR risks described above. Image first, reassemble offline, and treat migration as a last resort to be done only from verified clones.
How Do You Recover a Crashed Synology Volume?
Recovery follows one immutable rule: nothing writes to the original drives. The sequence below is read-only end to end, and it is the same whether the failure is at the array, the LVM, or the filesystem layer.
- Power down and stop all activity. Every write to a degraded array, including a rebuild already in progress, risks overwriting recoverable data. The unit comes off as soon as the volume reads Crashed.
- Image every member. Each disk is cloned to separate media with
ddrescue, or with a PC-3000 Portable III or DeepSpar Disk Imager when a member is weak and needs head-aware imaging. All later work is done against the images. - Assemble read-only.
mdadm --assemble --readonlyrebuilds the array map from the cloned superblocks. We never usemdadm --create, which writes new superblocks and destroys the original layout. - Activate the volume group.
vgchange -aybrings up the LVM logical volume from the assembled array so the filesystem becomes addressable. - Extract read-only. The filesystem is mounted with
mount -o ro, or, when Btrfs will not mount, files are pulled directly from a historical tree root withbtrfs restore. The recovered data is verified and returned on fresh media.
If you want the consumer-facing walkthrough of the same failure with less terminal detail, see our Synology volume crashed problem guide. This page is the architecture and methodology reference behind it.
What Does Synology Volume Recovery Cost?
A crashed Synology is priced as the sum of its parts: a per-member drive line for each disk that needs imaging, plus one array reconstruction fee for the logical work. There is no single opaque bundle and no diagnostic fee.
Per-Member Drive Pricing
Each member drive is priced against the same five-tier schedule used for individual hard drive data recovery. A four-bay unit with one weak member needing a head swap and three logically intact members generates one higher-tier line plus three lower-tier lines, not a flat array price.
- Low complexity
Simple Copy
Your drive works, you just need the data moved off it
Functional drive; data transfer to new media
Rush available: +$100
$100
3-5 business days
- Low complexity
File System Recovery
Your drive isn't recognized by your computer, but it's not making unusual sounds
File system corruption. Accessible with professional recovery software but not by the OS
Starting price; final depends on complexity
From $250
2-4 weeks
- Medium complexity
Firmware Repair
Your drive is completely inaccessible. It may be detected but shows the wrong size or won't respond
Firmware corruption: ROM, modules, or translator tables corrupted; requires PC-3000 terminal access
CMR drive: $600. SMR drive: $900.
$600–$900
3-6 weeks
- High complexity
Most Common
Head Swap
Your drive is clicking, beeping, or won't spin. The internal read/write heads have failed
Head stack assembly failure. Transplanting heads from a matching donor drive on a clean bench
50% deposit required. CMR: $1,200-$1,500 + donor. SMR: $1,500 + donor.
50% deposit required
$1,200–$1,500
4-8 weeks
- High complexity
Surface / Platter Damage
Your drive was dropped, has visible damage, or a head crash scraped the platters
Platter scoring or contamination. Requires platter cleaning and head swap
50% deposit required. Donor parts are consumed in the repair. Most difficult recovery type.
50% deposit required
$2,000
4-8 weeks
Hardware Repair vs. Software Locks
Our "no data, no fee" policy applies to hardware recovery. We do not bill for unsuccessful physical repairs. If we replace a hard drive read/write head assembly or repair a liquid-damaged logic board to a bootable state, the hardware repair is complete and standard rates apply. If data remains inaccessible due to user-configured software locks, a forgotten passcode, or a remote wipe command, the physical repair is still billable. We cannot bypass user encryption or activation locks.
No data, no fee. Free evaluation and firm quote before any paid work. Full guarantee details. Head swap and surface damage require a 50% deposit because donor parts are consumed in the attempt.
- Rush fee
- +$100 rush fee to move to the front of the queue
- Donor drives
- Donor drives are matching drives used for parts. Typical donor cost: $50–$150 for common drives, $200–$400 for rare or high-capacity models. We source the cheapest compatible donor available.
- Target drive
- The destination drive we copy recovered data onto. You can supply your own or we provide one at cost plus a small markup. For larger capacities (8TB, 10TB, 16TB and above), target drives cost $400+ extra. All prices are plus applicable tax.
Helium-sealed drives (8TB and larger NAS or server drives such as Toshiba MG08, Seagate Exos, and WD Ultrastar) are quoted on a separate tier. See helium drive pricing.
Array Reconstruction Fee
The array reconstruction fee is $400-$800. It covers SHR/mdadm parameter detection, LVM reconstruction, virtual assembly from the cloned images, and Btrfs or ext4 extraction, including historical tree-root recovery when Btrfs will not mount. The final figure within that range depends on member count, RAID level, and mixed-capacity SHR complexity, and it is confirmed at the free evaluation alongside the per-member line items.
No Data = No Charge. If we cannot recover usable data from your crashed Synology, you owe nothing under our no-fix-no-fee guarantee. There are no diagnostic fees. A rush fee of $100 moves a case to the front of the imaging queue. Optional return shipping is the only other potential cost on an unsuccessful case.
Does a Synology Array Replace a Backup?
No. A redundant array gives you hardware availability, not a backup. SHR and RAID protect you from a single drive dying without downtime; they do nothing against the failures that actually crash volumes.
Ransomware, an accidental deletion, a controller or power fault that pollutes parity across every member, and cascading failures across drives from the same manufacturing batch all hit the whole array at once. Keep discrete, offline backups of anything you cannot recreate, and verify them with a test restore to a different machine before you assume they protect you. A crashed volume is survivable; a crashed volume with no backup and a rebuild already attempted is where recovery gets expensive.
What Are the Most Common Crashed Synology Volume Questions?
Can I move my crashed Synology drives to a new NAS to recover them?
Will clicking Repair in DSM fix my crashed volume?
Why did my volume crash during a RAID rebuild?
How can Btrfs crash when all my drives are physically healthy?
Is SHR a proprietary format only the manufacturer can recover?
Is my data gone when DSM says Volume Crashed?
Data Recovery Standards & Verification
Our Austin lab operates on a transparency-first model. We use industry-standard recovery tools, including PC-3000 and DeepSpar, combined with strict environmental controls to make sure your hard drive is handled safely and properly. This approach allows us to serve clients nationwide with consistent technical standards.
Open-drive work is performed in a ULPA-filtered laminar-flow bench, validated to 0.02 µm particle count, verified using TSI P-Trak instrumentation.
Transparent History
Serving clients nationwide via mail-in service since 2008. Our lead engineer holds PC-3000 and HEX Akademia certifications for hard drive firmware repair and mechanical recovery.
Media Coverage
Our repair work has been covered by The Wall Street Journal and Business Insider, with CBC News reporting on our pricing transparency. Louis Rossmann has testified in Right to Repair hearings in multiple states and founded the Repair Preservation Group.
Aligned Incentives
Our "No Data, No Charge" policy means we assume the risk of the recovery attempt, not the client.
Technical Oversight
Louis Rossmann
Louis Rossmann's well trained staff review our lab protocols to ensure technical accuracy and honest service. Since 2008, his focus has been on clear technical communication and accurate diagnostics rather than sales-driven explanations.
We believe in proving standards rather than just stating them. We use TSI P-Trak instrumentation to verify that clean-air benchmarks are met before any drive is opened.
See our clean bench validation data and particle test videoRelated services
Related Recovery Services
Volume Crashed, Storage Pool Degraded, SHR reconstruction, and Btrfs/EXT4 recovery for all DiskStation and RackStation models.
DSM 7.2 LUKS and legacy eCryptfs recovery when an encrypted volume will not mount or the recovery key is lost.
Recovery for all NAS brands including QNAP, Buffalo, Western Digital, and Asustor.
Hardware and software RAID array reconstruction for RAID 0, 1, 5, 6, and 10.
Synology stuck in Volume Crashed?
Free evaluation. No data = no charge. Power it down and ship your drives from anywhere in the U.S.