Skip to main contentSkip to navigation
Lab Operational Since: 17 Years, 7 Months, 21 DaysFacility Status: Fully Operational & Accepting New Cases
Quick Answer

My Synology says Volume Crashed. What do I do first?

Power the NAS down now and do not click Repair in Storage Manager. Volume Crashed means one of two things: the mdadm software RAID lost too many members, or the Btrfs filesystem on top has a damaged tree root (parent transid verify failed). Repair rebuilds onto the target drive and overwrites the data and historical Btrfs roots that recovery needs. We image every drive, reassemble the SHR/mdadm and LVM stack read-only from the clones, and extract Btrfs or ext4. All work happens at our Austin, TX lab. Free evaluation, no data = no charge.

Synology Volume Crashed Data Recovery

Your DiskStation is showing a red Volume Crashed banner and asking you to repair or reinitialize. Before you touch a single button, power the unit down. We recover crashed Synology volumes through Synology NAS data recovery that separates mdadm software-RAID damage from Btrfs filesystem corruption, because the two failures look identical on screen and need opposite handling. 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.

Author01/13
Louis Rossmann
Written by
Louis Rossmann
Founder & Chief Technician
Updated June 2026
12 min read
Two Failures02/13

What Does Volume Crashed Actually Mean?

Volume Crashed is one banner covering two unrelated failures, and DSM does not tell you which one you are looking at. Synology stacks standard Linux layers, and the crash can originate at the software RAID layer or one layer up at the filesystem. Knowing which decides everything that happens next, so the first forensic job is reading the logs and the on-disk metadata, not pressing a button.

Scenario A: mdadm array degraded or superblock corrupt
The mdadm array lost more members than its level tolerates, or the members' superblocks disagree after an unclean shutdown. Each Synology data partition carries an mdadm 1.2 superblock at a 4KB offset recording the RAID level, device order, and event count. When those event counts diverge, mdadm refuses to assemble and the volume reads as crashed at the block layer.
Scenario B: Btrfs tree root damaged after power loss
The array assembles cleanly, but the Btrfs filesystem on top has a broken tree root. The logs show parent transid verify failed: a B-tree node has a generation number that does not match the transaction ID its parent expects, usually after an unexpected power loss or a dropped NVMe write cache. The RAID is healthy; the filesystem will not mount its current root.

The DSM error message is the same in both cases. A lab that treats every Volume Crashed as a RAID problem will force a rebuild on a machine whose RAID was never broken, and finish destroying a filesystem that was one read-only command away from coming back. We test which layer failed before any reconstruction touches the data.

Storage Stack03/13

How Is a Synology SHR Volume Actually Built?

An SHR volume is a stack of standard Linux layers, not proprietary silicon. Synology DiskStation Manager is a Linux distribution, and SHR is a management overlay on top of the same software RAID that has shipped in the Linux kernel since 2001. A healthy array reassembles on a vanilla Linux workstation with no Synology hardware in the loop. Each layer can crash on its own, which is why naming the layer matters.

1. Physical disks and partitions
Every member drive is partitioned the same way: md0 (a roughly 2.4 GB RAID 1 mirror across every drive holding the DSM operating system and logs), md1 (a RAID 1 swap partition), and md2 and up (the data). Because md0 mirrors across all drives, DSM keeps booting after one drive dies, which can mask how degraded the data array already is.
2. mdadm software RAID
The data partitions are combined into Linux mdadm arrays. SHR is a layout overlay, not proprietary hardware: SHR-1 is a RAID 1 mirror on two drives or RAID 5 on three or more, and SHR-2 is RAID 6. A healthy array assembles with mdadm --assemble --readonly on any Linux box.
3. LVM logical volume
The Storage Pool is an LVM volume group on top of the mdadm device. Mixed-capacity SHR stacks several mdadm arrays across drive-size bands (for example /dev/md2 and /dev/md3) and joins them with LVM into one logical volume, activated with vgchange -ay.
4. Btrfs or ext4 filesystem
The filesystem sits on the logical volume. Btrfs is copy-on-write and keeps a strict metadata hierarchy: superblock, chunk tree, root tree, filesystem tree, extent tree. A broken link anywhere in that chain produces parent transid verify failed and is Scenario B from the previous section.

If a recovery firm tells you SHR is a closed black box only their proprietary tool can read, that is marketing, not engineering. The truth is the opposite: the standard, open nature of the stack is exactly what makes a careful read-only reconstruction possible. The danger is never the format; it is letting the wrong tool write to it.

Events Counter04/13

Why Won't mdadm Reassemble the Array After a Crash?

The usual reason is the mdadm Events counter, a number each member records every time the array completes a successful metadata update. Reading it is forensic, not a guess. mdadm --examine /dev/sdX3 reads the version 1.2 superblock at the 4KB offset on each data partition and prints that member's Events count alongside the RAID level and device order.

When a member drops out (an SMR timeout, an unclean shutdown), its Events counter stops advancing while the surviving members keep writing and incrementing theirs. On the next boot mdadm compares the counts across every member. A drive whose Events count trails its peers is treated as non-fresh and excluded from assembly, because reusing its stale blocks would corrupt the array.

If that exclusion pushes the array past its parity tolerance (one missing member on SHR-1 or RAID 5, two on SHR-2 or RAID 6), the array will not assemble and DSM reports Volume Crashed. The drive itself is usually intact; the array stopped because the freshness check fenced off a lagging member.

The dangerous shortcut is mdadm --assemble --force, which bypasses the freshness check and rewrites the lagging member's Events count up to match the active members. On original customer drives that rewrite is destructive in place and risks Btrfs corruption when stale blocks no longer agree with the tree. It is safe only against write-blocked clone images.

We image first, then read every superblock with mdadm --examine off the clones, reconcile the Events counts offline, and bring the array up with mdadm --assemble --readonly.

SMR Timeouts05/13

Why Did My Synology Eject a Healthy Drive and Crash the Volume?

A volume often crashes because the controller ejected a drive that was never actually dead. The usual culprit is a Shingled Magnetic Recording (SMR) drive, the kind that pretend to behave like normal drives but stall for tens of seconds under sustained writes.

During a rebuild or a scrub, the drive's small Conventional Magnetic Recording cache zone fills up and the drive freezes for 30 to 60 seconds while it reorganizes overlapping shingled tracks.

The Linux kernel does not wait that long. It expects a drive to answer within a short Time-Limited Error Recovery (TLER) window. When the SMR drive goes silent past that window, mdadm reads the silence as a dead member and drops it from the array.

On a single-parity SHR-1 or RAID 5 set that has already lost redundancy, dropping one more member crashes the volume even though the ejected drive is mechanically fine and reads perfectly on a bench.

The other common trigger on prosumer units is an NVMe read/write cache. When a dirty NVMe cache drops off the PCIe bus mid-write, the uncommitted writes are gone and the underlying Btrfs is left with an incomplete transaction, which lands you in Scenario B with a parent transid verify failed root.

In both cases the array members are healthier than DSM thinks, which is exactly why imaging them before any rebuild is the difference between full recovery and loss.

Repair Danger06/13

Should I Click Repair in Synology Storage Manager?

No. The Repair Volume and Auto Repair buttons are presented as safe automated fixes, and on a crashed array they are the single most common reason a recoverable case becomes unrecoverable. Repair triggers a rebuild that reads every sector of the surviving members end to end and writes reconstructed data onto the target drive, which is precisely the wrong thing to do to a degraded set.

Two things go wrong. First, the rebuild has to read marginal drives end to end, and a latent unreadable sector encountered during that full-surface read can crash the array outright with no second parity to fall back on.

Second, the rebuild overwrites the target drive end to end, and if that target is the ejected but mechanically intact member, the write destroys data that was still readable on it, including on a Btrfs volume the historical copy-on-write generation roots that read-only recovery depends on. The buttons do not just risk failure; they actively consume your recovery options.

The same warning applies to the command line. Forum threads routinely tell panicked users to run mdadm --assemble --force to push a degraded array back online. Force-assembly rewrites the superblock of a surviving member to match the stale state of the others, which can destroy the one good copy of the metadata you needed. We read superblocks off write-blocked clones and reconcile them offline instead.

Btrfs Roots07/13

My Synology Says parent transid verify failed. How Is That Recovered?

That message means the RAID is fine and the Btrfs filesystem on top has a damaged tree root, so the recovery is a filesystem job, not a RAID job. Btrfs is copy-on-write: it never overwrites a metadata block in place, it writes the new version elsewhere and updates a pointer. That design is the reason older, consistent versions of the metadata trees usually still survive on disk after a crash, because nothing erased them.

The correct response is to walk back to one of those earlier generation roots and read from it. btrfs-find-root locates the historical roots by generation number, and btrfs restore extracts files against a chosen root without ever writing to the volume. We run both against a write-blocked image, so the original drives are never modified and we can try multiple generation roots until the directory tree comes back clean.

What we never do is run btrfs check --repair. That command writes new metadata in place, and the in-place write is exactly what destroys the surviving historical roots. The same goes for a forced read-write mount. Every Btrfs step we take is read-only, because on a copy-on-write filesystem the survivors are the whole point. The same read-only generation-root method drives our wider Btrfs filesystem recovery work, regardless of whether the volume sat on a Synology or a bare Linux host.

Rebuild Math08/13

Can Data Be Recovered After a Failed Synology Rebuild?

Frequently, but not by rebuilding again, because the math that crashed the rebuild has not changed. A rebuild on a degraded SHR-1 or RAID 5 array must read every surviving member end to end to recompute the missing data. Consumer drives carry a worst-case rating of one unrecoverable read error per 10 to the 14th bits read, which works out to roughly 12.5 TB.

That figure is a warranty floor, not a schedule: most drives read far past it without a single error. But on a large array the cumulative read of a full rebuild raises the odds of striking a latent unreadable sector on a surviving member, and on a single-parity set there is no second parity to reconstruct that stripe.

The controller hits the error, cannot continue, and aborts, which is why a rebuild that was supposed to heal the array instead finishes it off. This is not a hypothetical; it is the documented physics behind RAID data recovery on every modern array.

The safe path is to never recompute parity on the originals. We image each member with ddrescue, PC-3000 Portable III, or DeepSpar Disk Imager first, then reconstruct the array virtually from the clones, where a read error costs nothing and the physical drives are never written.

Where the array geometry has to be rediscovered, we reconstruct it with Data Extractor Express RAID Edition on the cloned images. A redundant array buys you uptime, not a backup; once redundancy is gone, the only safe move is imaging.

Migration Risk09/13

Is It Safe to Move My Crashed Drives Into a New DiskStation?

Only if the original failure was a dead power supply or a broken chassis, which a crashed volume usually is not. Moving the drives works when the disks and their metadata are intact and only the box died. It is disastrous when the crash came from metadata corruption, because the new unit will try to take ownership of the drives.

When you insert crashed drives into a new Synology and choose Migrate or Repair, DSM rewrites the md0 system partition and attempts a forced import of the arrays. If the array metadata is damaged, that import fails, and DSM then commonly offers a fresh install that permanently overwrites the data partitions.

The metadata needed to reconstruct the volume is small, specific, and irreplaceable, and these migration workflows are exactly what overwrites it. Power off, label each drive by its bay number, and image before anything else reads or writes the disks.

Process10/13

How Do You Recover a Crashed Synology Volume?

We image every member through a hardware write-blocker, identify whether the failure is at the mdadm layer or the Btrfs layer, reassemble the SHR/mdadm and LVM stack read-only 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 can end the recovery.

  1. Free evaluation: We document the model, the DSM error state and logs, the SHR or RAID level, the filesystem, and whether the crash sits at the mdadm or Btrfs layer. There are no diagnostic fees and this triage decides the recovery path.
  2. Write-blocked imaging: Each member is cloned with ddrescue, PC-3000 Portable III, or DeepSpar. Marginal and SMR drives get conservative retry profiles so imaging captures the maximum without accelerating wear, and the originals are never written.
  3. Superblock analysis: We read the mdadm 1.2 superblocks at the 4KB offset off the clones, reconcile device order and the most recent consistent event count, and determine stripe size and parity rotation. Where geometry must be rediscovered we use Data Extractor Express RAID Edition against the images.
  4. Read-only array assembly: We assemble the array with mdadm --assemble --readonly and activate the LVM volume group with vgchange -ay, never touching the physical drives.
  5. Filesystem extraction: For a healthy filesystem we mount it read-only and copy the data. For a damaged Btrfs tree we work read-only with btrfs-find-root and btrfs restore against historical generation roots, never an in-place repair, because copy-on-write means in-place repair destroys the older roots that recovery depends on.
  6. 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.

The same reconstruction logic applies whether the crash was at the RAID layer or the filesystem layer, and whether the chassis is a two-bay or an eight-bay. A crashed Synology volume is one slice of the wider NAS data recovery work we handle, and the member-by-member imaging mirrors any single hard drive data recovery case we run.

If the crashed volume was also encrypted, reassembling the array is only the first step. Decryption additionally requires the volume key material: the eCryptfs or LUKS wrapped key, specifically the .wkey file on the Btrfs volume and the machine.key on the synoboot partition. Without it the reassembled array yields ciphertext, which is why encrypted Synology volume recovery is its own process.

iSCSI LUNs11/13

What If My Crashed Synology Was Hosting iSCSI Targets?

A Synology iSCSI LUN is not a physical partition on the drives; it is a sparse file named EP_DAT_00000 sitting inside a hidden @iSCSI/EP/ directory on the same Btrfs or ext4 volume the rest of this page reconstructs. That single fact decides the whole recovery, because the LUN cannot be reached until the volume underneath it is back, read-only.

The dependency runs one direction only. The same read-only SHR/mdadm and LVM reassembly and Btrfs or ext4 extraction described in the sections above has to complete first, on cloned images, before the @iSCSI directory and the EP_DAT_00000 file are even visible. The layers stack like this:

1. mdadm RAID set
The member partitions assemble read-only with mdadm --assemble --readonly off the clones, exactly as for a non-iSCSI crash.
2. LVM volume group
The volume group is activated with vgchange -ay against the assembled array, never against the original drives.
3. Btrfs or ext4 host filesystem
The host filesystem is traversed read-only. On a crashed Btrfs tree that means btrfs-find-root and btrfs restore against a historical generation root, which is what surfaces the @iSCSI/EP/ directory.
4. The EP_DAT sparse-file container
EP_DAT_00000 is extracted as a file from the recovered host filesystem. It is the LUN, stored as one large sparse file, not a block device on the disks.
5. The mounted block device
The extracted file is attached as a loop device with losetup -P, which scans the partition table the initiator wrote and exposes each partition as its own device. Mounting that partition device finally surfaces the initiator-side filesystem inside, typically NTFS or ext4.

If the Btrfs extents physically holding the EP_DAT_00000 file are damaged, the file itself is imaged with ddrescue across the bad extents before it is mounted, so a few unreadable blocks inside the container do not abort the whole extraction. The work is the same forensic Btrfs filesystem recovery that drives the rest of this page, with one extra unwrapping step at the end.

Two pieces of forum lore get this wrong. The first says an iSCSI LUN is a physical partition you can carve straight off the member disks; it is not, because the LUN only exists as a file inside a host filesystem that has to be reconstructed first. The second says a LUN can be recovered on its own without rebuilding the underlying array; it cannot, because there is no LUN to read until the SHR/mdadm, LVM, and Btrfs or ext4 layers below it are reconstructed.

Pricing12/13

What Does Volume Crashed Recovery Cost?

Crashed Synology recovery uses two line items: a per-member price based on each drive's physical and firmware condition, plus a single array reconstruction fee for the SHR/mdadm, LVM, and filesystem work. If we recover nothing usable, 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, billed per evaluated drive. A four-bay 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.

  1. 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

  2. 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

  3. 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

  4. 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

  5. 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.

The prices above are for standard hard drives, which covers most jobs. Helium-sealed drives (for example WD or HGST Ultrastar He and Seagate Exos X) must be resealed and refilled with helium in-house after the chamber is opened, so they price higher, in the $200–$5,000+ range. See helium drive pricing.

Array Reconstruction Fee

The array reconstruction fee is $400-$800. It covers SHR/mdadm parameter detection, superblock reconciliation, LVM reconstruction, virtual assembly from cloned images, and Btrfs or ext4 extraction including read-only generation root recovery. The final figure within that range depends on member count, RAID level, and mixed-capacity SHR complexity, and 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.

Faq13/13

What Are the Most Common Synology Volume Crashed Questions?

What does Volume Crashed mean on a Synology?
Volume Crashed is DSM telling you it can no longer present the volume, but it lumps two different failures under one banner. Either the mdadm software RAID lost more parity members than the level can tolerate and the array will not assemble, or the array is fine and the Btrfs filesystem on top of it has a damaged tree root after an unexpected power loss, which shows up as parent transid verify failed in the logs. The recovery path is different for each, so the first job is identifying which one you have before anyone touches the drives.
Should I click Repair in Synology Storage Manager after a volume crash?
No. Repair Volume triggers a rebuild that reads every sector of the surviving members end to end and writes reconstructed data onto the target drive. On a degraded array a single unrecoverable read error during that full-surface read can crash the volume outright, and the rebuild overwrites the target drive, destroying whatever was still readable on it including the historical Btrfs copy-on-write roots that recovery depends on if the ejected drive is reused. Repair is the most common reason a recoverable Synology becomes unrecoverable. Power the unit down and image first.
Can I pull the drives out of my dead Synology and read them on a Linux PC?
Often yes, because SHR is not proprietary. It is standard Linux mdadm aggregating drive partitions into RAID 1 or RAID 5 sets, LVM joining those into one volume group, and Btrfs or ext4 on top. A healthy array assembles on a vanilla Linux workstation with mdadm --assemble --readonly followed by vgchange -ay. The danger is doing this on the original drives. Read-only on imaged clones is safe; assembling the originals read-write, or letting a new NAS Migrate or Repair them, can overwrite the metadata you need.
Why did my Synology eject a healthy drive and crash the volume?
This is usually an SMR drive timeout. Shingled drives such as some WD Red models keep a small CMR cache that overflows during the sustained sequential writes of a rebuild or scrub. When the cache fills, the drive stalls for 30 to 60 seconds while it reorganizes shingled tracks. That stall exceeds the TLER window the Linux kernel expects, so mdadm reads the silence as a dead drive and ejects it. The drive is physically fine; the array crashed because of a timeout, not a head crash.
What is mdadm superblock corruption and how does it crash a Synology volume?
Every Synology data partition carries an mdadm 1.2 superblock at a 4KB offset that records the RAID level, member count, device order, and event count. If that superblock is damaged or its event counts diverge across members after an unclean shutdown, mdadm refuses to assemble the array and DSM reports Volume Crashed. The fix is forensic, not a button: read the superblocks off write-blocked clones, reconcile device order and the most recent consistent event count, and assemble a read-only virtual array. Running mdadm --assemble --force on the originals can overwrite a surviving member's superblock.
My Synology says parent transid verify failed. What is that?
That message means the RAID assembled fine but the Btrfs filesystem on top has a broken tree root. Btrfs is copy-on-write and keeps a hierarchy of metadata from the superblock down through the chunk tree, root tree, and filesystem tree. When a power loss or a dropped NVMe write cache interrupts a transaction, a B-tree node ends up with a generation number that does not match what its parent expects, and Btrfs will not mount the current root. Recovery means walking back to an earlier consistent generation root with btrfs-find-root and extracting with btrfs restore, never btrfs check --repair.
Will btrfs check --repair fix my crashed Synology volume?
It is far more likely to finish the job the crash started. Btrfs is copy-on-write, which means older, consistent versions of the metadata trees usually still survive on disk after a crash precisely because nothing overwrote them. btrfs check --repair writes new metadata in place, and that in-place write is exactly what destroys those surviving historical generation roots. Professional Btrfs recovery stays read-only: btrfs-find-root locates the older roots and btrfs restore extracts files against them. We never run an in-place repair on a customer volume.
Can data be recovered after a failed Synology RAID rebuild?
Frequently, but not by rebuilding again. A rebuild on a degraded SHR-1 or RAID 5 array has to read every surviving member end to end. Consumer drives carry a worst-case rating of one unrecoverable read error per 10 to the 14th bits, roughly 12.5 TB read, and that is a warranty floor rather than a schedule. On a large array the rebuild can hit a latent unreadable sector with no second parity to reconstruct it, and abort. We image every member first, then reconstruct parity against the clones offline where a read error costs nothing and the originals are never written.
Is it safe to move my crashed Synology drives into a new DiskStation?
Only if the crash was a dead power supply or a failed chassis, which it usually is not. If the volume crashed because of metadata corruption, moving the drives into a new unit and choosing Migrate or Repair tells DSM to rewrite the md0 system partition and force-import the arrays. When that import fails, DSM commonly offers a fresh install that permanently overwrites the data partitions. The metadata needed to reconstruct the volume is small and irreplaceable, and these workflows are exactly what overwrites it. Image first, experiment never.
Do I need to send all the drives from my Synology, or just the failed one?
Send every drive from the chassis, in their bay order if you can label them. SHR-1 and RAID 5 tolerate one missing member, so the array can be reconstructed with a single drive absent, but every additional drive you provide widens the margin and improves the odds of a complete recovery, including the ones DSM marked as failed. A drive the controller ejected for an SMR timeout is often the most intact disk in the set. We image each member individually and reconstruct the array virtually from the clones, so a single missing drive can still be the difference between a full recovery and an incomplete one.
How much does Synology Volume Crashed recovery cost?
Two line items. Each member drive is priced against the same five-tier hard drive schedule by its physical and firmware condition, from a simple logical case up to a head swap, billed per evaluated drive. On top of that is a single array reconstruction fee that covers SHR/mdadm parameter detection, LVM reassembly, and Btrfs or ext4 extraction. There are no diagnostic fees and the evaluation is free. If we recover nothing usable, you owe nothing under our no-fix-no-fee guarantee.
Where is the recovery work performed and do you offer mail-in service?
All work is performed in-house at our lab at 2410 San Antonio Street, Austin, TX 78705. We are a single location with no franchises and no outsourcing. Nationwide service is mail-in: power the unit down, label the drives by bay number, pack them so the platters are protected, and ship them in. We image every member through a write-blocker on arrival and confirm the per-member and array reconstruction figures at the free evaluation before any chargeable work starts.
What if my crashed Synology volume was hosting iSCSI targets?
A Synology iSCSI LUN is not a partition on the drives. It is a sparse file named EP_DAT_00000 inside a hidden @iSCSI directory on the Btrfs or ext4 volume, so it cannot be read until that volume is back. We rebuild the SHR/mdadm and LVM stack read-only from cloned images and extract the host filesystem first, which is the only thing that surfaces the @iSCSI directory and the EP_DAT_00000 file. We then attach the recovered file with losetup -P so the partition table the initiator wrote is scanned, and mount the exposed partition device to reach the inner NTFS or ext4. If the Btrfs extents holding the file are damaged, we image the file itself with ddrescue before mounting it.

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.

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 video

Synology showing a Volume Crashed banner?

Free evaluation. No data = no charge. Ship your drives from anywhere in the U.S.

(512) 212-9111Mon-Fri 10am-6pm CT
No diagnostic fee
No data, no fee
4.9 stars, 1,837+ reviews