My Synology SHR volume crashed. What is SHR, and what do I do first?
SHR is not proprietary hardware. It is a software stack: mdadm for the RAID geometry, LVM to join the size bands, and Btrfs or ext4 on top. It reassembles on any Linux workstation. Power the NAS down, do not click Repair, and do not move the drives to a new Synology. Recovery means imaging every member, then rebuilding the mdadm and LVM layers offline. All work happens at our Austin, TX lab. Free evaluation, no data = no charge.
Synology SHR Hybrid RAID Data Recovery
Your Synology shows a red Volume Crashed banner, or an SHR array will not assemble after a rebuild. Before you touch anything, power the unit down. Synology Hybrid RAID runs the same Linux software RAID that has been around since 2001, so it reconstructs on a Linux workstation as part of our Synology NAS data recovery work, with no Synology chassis required. We mail you nothing to install and you ship us your drives: every member 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 Is Synology SHR Actually Made Of?
SHR is a nested stack of standard Linux layers with a thin Synology management overlay on top. There is no proprietary RAID silicon inside a DiskStation. Knowing which layer failed decides whether your case is a routine read-only reassembly or a hand reconstruction, and none of these layers is a black box.
- 1. Physical disks and partitions
- Every member is partitioned the same way: a small DSM system partition mirrored across all drives (
md0), a swap partition, and one or more data partitions. On a mixed-capacity array DSM cuts each drive into multiple partitions so the spare capacity of the larger drives can be used rather than wasted. - 2. mdadm software RAID
- The data partitions are aggregated by mdadm, the same Linux software RAID tool that has shipped in the kernel for two decades. Each drive carries an mdadm 1.2 superblock written 4096 bytes into the partition, which records the array UUID, the member order, the chunk size, and the RAID level. A healthy array assembles with
mdadm --assemble --readonly. - 3. LVM logical volume
- The Storage Pool is an LVM volume group, the Linux Logical Volume Manager that lets a NAS combine mismatched drive sizes. On a mixed-capacity SHR array LVM concatenates several mdadm arrays end to end into one continuous logical volume. It is activated on a workstation with
vgchange -ay. - 4. Btrfs or ext4 filesystem
- The filesystem is formatted on top of the LVM logical volume. Btrfs is the snapshotting filesystem most modern DiskStations use; ext4 is the older default. Because Btrfs never overwrites a block in place, it writes the new version elsewhere and updates a pointer, which is exactly why an in-place repair tool can destroy the older, still-valid versions of your data.
A standard equal-capacity SHR-1 of three or more drives is a single RAID 5 set under LVM and a Btrfs filesystem. A mixed-capacity SHR is several RAID sets stacked by LVM. Either way the recovery is the same shape: read the mdadm metadata, bridge with LVM, mount the filesystem read-only. The hard cases are the ones where the LVM bridge or the Btrfs tree is damaged, covered below.
What Is the Difference Between SHR-1 and SHR-2?
The number after SHR is how many drives can fail before the data is gone. SHR-1 survives one failure; SHR-2 survives two. The difference is which RAID level mdadm uses to build the size bands underneath, and that changes how much margin you have when a member is missing or unreadable during recovery.
| Attribute | SHR-1 | SHR-2 |
|---|---|---|
| Fault tolerance | One drive | Two drives |
| Minimum drives | One band can mirror on two drives | Four drives |
| Underlying mdadm level | RAID 5 on three or more drives, RAID 1 on a two-drive band | RAID 6 with dual parity across the bands |
| Recovery margin | One missing or unreadable member per band before a stripe is unreconstructable | Two missing or unreadable members per band before loss |
The practical consequence shows up during a crashed-array recovery. On SHR-1 a single unreadable sector on a single-parity stripe has no second parity to reconstruct it, so that stripe is lost. SHR-2 can lose a whole second member and still solve every stripe, which is why the dual-parity layout is worth the extra drive on anything that matters.
Why Are Mixed-Capacity SHR Arrays Harder to Reconstruct?
A mixed-capacity SHR volume is not one RAID array. It is several stacked on top of each other and joined by LVM, and each one has to be solved separately if the metadata is gone. This is the single thing that makes manual SHR reconstruction harder than a plain RAID 5, and it is the part most recovery pages never mention.
Take an SHR-1 of two 1TB drives and two 2TB drives. DSM carves a 1TB partition on all four drives and a second 1TB partition on the two larger drives. It builds the first band as a four-drive RAID 5 across the matched 1TB partitions, and the second band as a two-drive RAID 1 mirror across the leftover space on the 2TB drives.
LVM then takes both mdadm devices, marks them as physical volumes in one volume group, and concatenates them into a single logical volume. That is how SHR uses all 6TB of raw space to give you 4TB usable with one-drive fault tolerance instead of wasting the extra capacity the way classic RAID 5 would.
When the superblocks survive, all of this is automatic. When they do not and the geometry has to be carved by hand, the engineer solves disk order, chunk size, and offset once per band, not once for the volume.
If the LVM metadata that records the exact byte offset where the second band attaches to the end of the first is damaged, every band can be perfectly reconstructed and the Btrfs filesystem will still read as raw, unformatted data until that LVM bridge is repaired at the hex level. That repair is precise, irreplaceable work, which is why an LVM-layer failure is an in-lab job rather than something to attempt on the live NAS.
Why Did My SHR Volume Crash During a Rebuild?
The most common modern cause is an SMR drive timing out mid-rebuild. SMR drives are the ones that pretend to be standard hard drives but stall for 30 to 60 seconds when asked to do sustained writes, and the NAS reads that stall as a dead drive. Western Digital submarined SMR into its WD Red consumer NAS line without disclosure, and SMR desktop drives from several vendors ended up in NAS arrays unknowingly, which set off a wave of these crashes.
The mechanism is the same every time. An SMR drive writes overlapping tracks, like shingles on a roof, so it cannot overwrite a block in place. It hides that penalty behind a small zone of conventional CMR space used as a fast write cache. Normal NAS traffic never fills that cache.
A rebuild does: it is a sustained, sequential, multi-terabyte write that runs flat out for hours. When the CMR cache overflows, the drive stalls to reorganize its shingles, its throughput drops to zero, and its SATA interface stops answering. The kernel waits out its Time-Limited Error Recovery window of roughly 7 to 30 seconds, decides the drive is dead, resets the SATA port, and drops the member from the array.
On a single-fault-tolerant SHR-1 that already lost one drive, that ejection is the second failure, and the pool collapses into the red Volume Crashed banner. The cruel part is that the ejected SMR drive is physically perfect. It only timed out on cache overflow.
The data is recoverable, but the array has to be imaged at a throttled pace with the timeout thresholds raised, then assembled offline from the clones. It cannot be fixed by clicking Repair again, which only re-triggers the same stall.
Why Is Clicking Repair on a Degraded SHR Array Dangerous?
DSM presents Repair as a safe, automatic fix. On a degraded array it is a high-stress parity rebuild, and there are two ways it turns a recoverable situation into a lost one. The first is mechanical. Repair forces every surviving drive to read every sector to recompute the missing parity. If a surviving drive already has weak heads or bad sectors, that sustained read load can finish it off, turning a logical recovery into a clean-bench mechanical job.
The second is statistical. Consumer drives carry a worst-case rating of one unrecoverable read error per 10^14 bits read, which works out to roughly 12.5TB. That is a warranty floor, not a countdown, and most drives read well past it without a single error.
But a degraded SHR-1 rebuild of, say, four 12TB drives has to read about 36TB off the surviving members to reconstruct the missing one, and across that much data the probability of hitting one latent unreadable sector is real. On a single-parity stripe there is no second parity to rebuild that sector, so mdadm can abort the resync and drop the array to crashed. This is the math behind why a RAID 5 or SHR-1 rebuild is never a routine button press on a large modern array.
The safe path does not depend on which failure mode you are facing. Image every member with ddrescue, the PC-3000 Portable III, or a DeepSpar Disk Imager first, give any marginal drive a conservative retry profile so imaging does not accelerate wear, then recompute parity against the clones where a mistake costs nothing. The Repair button writes to the only copy you have.
Why Should I Not Move SHR Drives to a New Synology or Run mdadm --create?
Two pieces of common advice destroy more SHR arrays than the original failure did: migrating the drives to a replacement NAS, and forcing the array online with mdadm --create. Both write to the metadata you need for reconstruction.
When you move SHR drives into a new Synology and it offers to Migrate, DSM rewrites the md0 system partition that spans every drive so it can install its own operating system. If a drive went in the wrong slot, or the original crash involved partition-table corruption, that overwrite can bleed past the system partition into the data bands, taking out the LVM headers and the Btrfs trees.
When the forced import then fails, DSM commonly offers a fresh install, which finishes the job. The metadata that recovery depends on is small and irreplaceable, and these workflows are precisely what overwrites it.
The mdadm --create command is just as final. Forum threads recommend it to force a crashed array back online, but create writes a brand new superblock over the original and makes you supply the exact drive order, chunk size, and layout from memory. One wrong parameter codifies the wrong geometry, and when the filesystem tries to mount it reads scrambled, out-of-order blocks that shred the Btrfs trees and the ext4 journal.
The original superblock is gone. The only safe assembly is mdadm --assemble --readonly, run against clones. The commands in the next section are read-only forensic diagnostics for sector clones, not a repair sequence for your live, degraded drives.
How Do You Recover a Synology SHR Volume?
We image every member through a hardware write-blocker, reassemble the mdadm and LVM stack from the clones, and extract Btrfs or ext4 offline. Your original drives are never modified. The steps below describe the work; they are not a do-it-yourself procedure, because a single wrong write to a superblock or an LVM header ends the recovery.
- Free evaluation: We document the model, the DSM error state, the SHR-1 or SHR-2 layout, the drive capacities and whether they are mixed, the filesystem, and which members were dropped and when. Suspected SMR members are flagged here so imaging is throttled from the start.
- Write-blocked imaging: Each member is cloned with the PC-3000 Portable III, the PC-3000 Express, or a DeepSpar Disk Imager. Marginal drives get conservative retry profiles and head maps; suspected-SMR drives get raised timeout thresholds so a cache-flush stall is not misread as a dead drive.
- Geometry and band detection: We read the mdadm 1.2 superblock at offset 4096 on each cloned data partition to recover the member order, chunk size, and RAID level for every size band. On a mixed-capacity array this is solved once per band rather than once for the volume.
- Read-only assembly: Each band is assembled from the clones with
mdadm --assemble --readonly, never with create. For arrays whose superblocks are too damaged to assemble, the bands are reconstructed virtually from the imaged members using Data Extractor Express RAID Edition on the PC-3000 Express. - LVM activation or repair: The volume group is located with
lvscanand activated read-only withvgchange -ay. If the LVM metadata bridging one band to the next is damaged, the physical-volume headers are repaired at the hex level so the bands concatenate in the right order before the filesystem is read. - Filesystem extraction: The filesystem is mounted read-only. If the Btrfs tree is damaged we work read-only with
btrfs-find-rootandbtrfs restoreagainst historical generation roots. We never runbtrfs check --repairor force a recovery mount, because copy-on-write means an in-place write destroys the older roots the extraction depends on. - Verification and delivery: Recovered data is copied to a target drive, verified against your priority file list, and shipped back. Working copies are securely purged on request.
Read-only forensic diagnostics (run against sector clones, never live drives)
# READ-ONLY DIAGNOSTIC. For sector-by-sector clones only,
# not live or degraded drives. Wrong assembly = data loss.
# Assemble one SHR size band read-only from cloned partitions
mdadm --assemble --readonly /dev/md127 /dev/sda3 /dev/sdb3 /dev/sdc3 /dev/sdd3
# Locate and activate the LVM volume group (read-only intent)
lvscan
vgchange -ay
# Mount the filesystem read-only once the LV is active
mount -o ro /dev/vg1/volume_1 /mnt/recoverThese are diagnostics, not a repair guide. There is no --create step and no in-place filesystem repair, because both overwrite the metadata recovery depends on.
The same RAID and filesystem logic applies to every Synology layout. SHR adds the size-band concatenation; the rest mirrors any RAID data recovery case we run, and SHR is one slice of the wider NAS data recovery work we handle across every vendor.
What Does SHR Data Recovery Cost?
SHR recovery uses the same two line items as any Synology array: a per-member price based on each drive's physical and firmware condition, plus one array reconstruction fee for the mdadm, LVM, and filesystem work. There is no separate charge for mixed-capacity complexity. If we recover nothing, you owe nothing under our no-fix-no-fee guarantee.
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 SHR unit with one head-swap member and three logical-only members generates an individual line item for each evaluated drive, not a single opaque bundle.
- 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 mdadm parameter detection per size band, LVM reconstruction and any hex-level bridge repair, virtual assembly from cloned images, and Btrfs or ext4 extraction. The final figure within that range depends on member count, SHR-1 versus SHR-2, and how many distinct size bands the mixed-capacity layout contains. 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 SHR volume, 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.
How Do I Reduce the Risk of an SHR Volume Crash?
Use CMR drives from your NAS vendor's compatibility list, not whatever SMR drive was cheapest, because the SMR timeout cascade is the failure mode that turns a healthy drive into a crashed array during a rebuild. If you run a large SHR-1, understand that a degraded rebuild on high-capacity consumer drives carries real URE risk, and consider SHR-2 on anything you cannot afford to lose so a second unreadable member does not end the array.
SHR also does not change the oldest rule in storage: a redundant array gives you hardware availability, not a backup. Ransomware, an accidental deletion, a controller fault, or a cascading failure across drives from the same manufacturing batch destroys every member at once. Keep discrete, offline backups, and verify them with a test restore to a different machine before you assume they protect you.
What Are the Most Common SHR Recovery Questions?
Is Synology SHR proprietary hardware?
Can I use mdadm --create to recover a crashed Synology volume?
Can SHR be recovered without a Synology NAS?
Why did my SHR volume crash during a rebuild?
What is the difference between SHR-1 and SHR-2?
Should I click Repair in Synology Storage Manager?
My mixed-capacity SHR array will not assemble. Is it harder to recover?
What does Synology SHR recovery cost?
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 maintain drive integrity. 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
Our engineers review all lab protocols to maintain 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 aes-xts-plain64 volumes and legacy eCryptfs shared folders, with the honest limits when the key is gone.
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 showing a red Volume Crashed banner?
Free evaluation. No data = no charge. Ship your drives from anywhere in the U.S.