Skip to content
HomeTechOps

Backups & Storage

HDD shortage 2026: how to buy recertified drives safely

The HDD market in 2026 is broken. Western Digital's CEO publicly said WD is 'pretty much sold out for calendar 2026' with firm POs into 2027-2028; HDD prices are up 46% since September 2025; lead times on 18TB+ stretched to 10+ weeks; Toshiba is refunding warranty claims at original purchase price instead of replacing drives (because replacement stock doesn't exist). On top of that, the January 2025 Seagate scandal — drives sold as 'new' but with 15,000-50,000 hours on the SMART FARM log — broke buyer trust in even certified-partner channels. For home operators building or expanding a NAS, recertified and refurbished drives are now the default play, not the budget option. The trick is buying from the right vendor and verifying every drive on arrival.

The on-arrival verification commands, captured from a real Unraid box

Reference images and diagrams. Click any image to view full resolution.

Terminal session captured on a real Unraid 7.x box (kernel 6.12.54-Unraid, Intel i5-14500). First, smartctl --version confirms smartctl 7.5 (2025-04-30 r5714) — the version required for FARM reads. Then smartctl -A /dev/sdb dumps the standard SMART attributes table on a healthy WD Red Plus 8TB drive: Power_On_Hours 3327 (~4.6 months — recently added drive), Reallocated_Sector_Ct 0, Current_Pending_Sector 0, Offline_Uncorrectable 0, Temperature 34°C. Then smartctl -l farm /dev/sdb returns 'FARM log (GP Log 0xa6) not supported for non-Seagate drives' — proving FARM is Seagate-specific. Trailing commentary explains that for Seagate drives the FARM Power-on Hours vs SMART attribute 9 delta is the smoking gun for the 2025 scandal.
Real captured terminal session on the author's Unraid 7.x NAS (May 2026). Two-part recertified-drive verification flow shown end-to-end: (1) `smartctl -A /dev/sdX` — the universal SMART attribute dump that works on any vendor's drive; check Power_On_Hours (attribute 9), Reallocated_Sector_Ct (attribute 5), Current_Pending_Sector (attribute 197), and Offline_Uncorrectable (attribute 198). All four should be low/zero on a genuinely new or healthy recertified drive. (2) `smartctl -l farm /dev/sdX` — Seagate-only Field Access Reliability Metrics. On Seagate drives this dumps a separate log where Power-on Hours is recorded independently from SMART attribute 9. A LARGE delta between SMART attribute 9 (low — looks new) and FARM Power-on Hours (15,000-50,000 — actually used) is the smoking gun for the 2025 scandal that expanded to IronWolf Pro in late 2025. smartmontools 7.4 minimum for FARM support; 7.5 is current stable. The 'not supported' error on a WD drive is itself useful evidence: it confirms FARM is Seagate-specific and explains why the page recommends running -A first as the universal check.

Who this is for

Home operators building or expanding a NAS in 2026 hitting the WD/Seagate shortage. Looking at 16-22TB drives, finding 'out of stock' everywhere, and weighing recertified vendors against the Seagate FARM scandal risk.

Outcome

A working buying playbook: which recertified vendor to use, what drives to look for, the inspection runbook on arrival, and how to handle RMA inside the 10-30 day vendor window when burn-in fails.

Required inputs

  • A NAS or test machine with available SATA ports for burn-in (or a USB-to-SATA dock).
  • A workstation with `smartctl` 7.4+ installed (Linux easiest; Windows via Cygwin or WSL).
  • Enough time budget for the 5-7 day burn-in per drive (parallel drives shorten total time but not per-drive time).
  • Budget decision: full retail new vs recertified (~25-40% savings) vs eBay datacenter pull (deeper but higher variance — community lore says ~50%, treat as directional).
GuideFollow in order

Step-by-step procedure

1

Pick the vendor based on your priorities

Do: Most operators: ServerPartDeals (SPD) or GoHardDrive (GHD) — multi-year warranty + community-verified grading. Lowest risk + budget: WD/Seagate factory recert direct from manufacturer (limited stock). Backup tier only: eBay datacenter pulls (high variance). Avoid Amazon Renewed for HDDs.

Expected result: Vendor chosen; order placed with documented warranty period + return policy.

If not: If your priority is warranty-that-matters-in-2026, prefer SPD/GHD's multi-year vendor warranty over a manufacturer warranty. Note the 2026 Toshiba situation: its 'refund in lieu of replacement' clause is longstanding warranty language, but Toshiba is now *enforcing* it (no stock) and refunding at the original price — below current replacement cost — so a replace-not-refund vendor warranty is worth more right now.

2

Inspect every drive on arrival before adding to production

Do: Pull drive out of antistatic; visually inspect (no PCB damage, no oily contamination). Connect to SATA port (test machine, USB dock, or NAS in a temp slot). Run `smartctl -a /dev/sdX` to get baseline.

Expected result: SMART reports: model + serial + firmware visible; Power_On_Hours plausible for vendor's claim (≤ few thousand for recert; 0 for 'new'); Reallocated_Sector_Ct and Current_Pending_Sector at 0.

If not: If reallocated/pending sectors > 0, RMA immediately. If Power_On_Hours wildly above vendor claim, also RMA (Seagate: cross-check FARM in next step).

3

For Seagate drives: FARM cross-check (the Seagate FARM scandal step)

Do: `smartctl -l farm /dev/sdX` (requires smartmontools 7.4+). Compare FARM's 'Power on Hours' against standard SMART attribute 9.

Expected result: FARM hours ≈ SMART attribute 9 hours (delta < 100 typically). Both consistent with vendor's claim.

If not: Any non-trivial delta = scandal-grade fraud. SMART attribute 9 reset to 0 with FARM showing thousands of hours = the Seagate scandal. RMA immediately with FARM evidence. Multiple retailers including Seagate-certified partners distributed scandal-affected drives.

4

Run SMART self-tests (short then extended)

Do: `smartctl -t short /dev/sdX`, wait 5 min, then `smartctl -l selftest /dev/sdX`. Then `smartctl -t long /dev/sdX` (4-12 hr per drive depending on size).

Expected result: Both tests complete with 'Completed without error.'

If not: Any read/seek/ECC error in selftest result = RMA. Don't burn-in a drive that's already failing self-test.

5

Destructive 4-pattern badblocks burn-in (the long one)

Do: `badblocks -b 4096 -wsv -o /root/badblocks-sdX.log /dev/sdX` (use `-b 8192` for >16 TiB drives). Patterns 0xaa, 0x55, 0xff, 0x00. ~24 hr per 8 TB.

Expected result: Log file empty at completion (no bad blocks found).

If not: Any non-empty output = drive has bad blocks. RMA inside the vendor's window (10-30 days from SPD/GHD).

6

Re-read SMART after burn-in for delta

Do: `smartctl -A /dev/sdX`. Compare attributes to the baseline from step 2: Reallocated_Sector_Ct, Current_Pending_Sector, Offline_Uncorrectable, UDMA_CRC_Error_Count.

Expected result: All four counters unchanged from baseline. Drive accepted.

If not: Any new bad blocks in any of those counters = RMA. Single-digit growth is debatable for production; on a fresh recert, treat as RMA-grade. The burn-in caught a drive that would have failed within 90 days.

7

Platform-specific final acceptance

Do: Unraid: run the preclear plugin (1-pass post-badblocks is sufficient); add to array as data or parity. TrueNAS Scale: add to a temporary single-disk pool, run `zpool scrub` + 24-hr `fio` workload, destroy temp pool, add to production vdev. Synology DSM 7.3: Storage Manager > Extended SMART + Bad Sector Test, then add to pool. QNAP: HDD Stress Test in Helpdesk, then SMART extended.

Expected result: Platform-specific tests pass; drive goes into production.

If not: If platform-specific tests find issues that the generic burn-in missed (unusual), still RMA — the vendor's burn-in didn't catch this drive's issue.

Commands and settings paths

Baseline SMART check

smartctl -a /dev/sdX

Where: Linux test machine, Unraid console, or TrueNAS Scale shell.

Expected: Reports: model, serial, firmware, Power_On_Hours, Reallocated_Sector_Ct, Current_Pending_Sector, UDMA_CRC_Error_Count, etc.

Failure means: Reallocated/pending > 0 on a 'new' or 'recert' drive = bad drive; RMA before burn-in.

Safe next step: Capture output to file; RMA immediately if criteria fail.

Seagate FARM check (Seagate-only)

smartctl -l farm /dev/sdX

Where: Same as above; requires smartmontools 7.4+.

Expected: FARM Power_On_Hours ≈ SMART attribute 9 hours.

Failure means: Non-trivial delta = Seagate FARM scandal fraud — drive was used heavily before being sold as new.

Safe next step: RMA immediately with FARM evidence; report to Seagate Ethics Helpline if vendor was on Seagate's certified-partner list.

Confirm smartmontools is new enough to read FARM

smartctl --version

Where: The Linux / Unraid / TrueNAS shell you'll inspect drives from.

Expected: Version 7.4 or newer (FARM-log support landed in 7.4; current is 7.5).

Failure means: On 7.3 or older, `smartctl -l farm` won't work and you can't do the Seagate anti-fraud check.

Safe next step: Update smartmontools (or use SeaTools/openSeaChest); don't accept a Seagate recert without the FARM check.

Verify the drive is CMR, not SMR

Decode the model suffix against the vendor CMR/SMR list; heuristic: `smartctl -a /dev/sdX | grep TRIM` — TRIM on a mechanical drive indicates DM-SMR.

Where: Vendor spec page + the inspection shell.

Expected: Model is on the CMR list (enterprise nearline like Exos/Ultrastar/MG, or WD Red Plus/Pro, are CMR).

Failure means: An SMR drive (e.g. WD EFAX) will stall or drop out during a RAID rebuild.

Safe next step: Return it; buy a confirmed-CMR model for any pooled/parity slot.

Check the manufacturer warranty by serial

Seagate seagate.com/support/warranty-and-replacements; WD support-en.wd.com/app/warrantystatusweb; Toshiba US RMA portal (serial from `smartctl -i`)

Where: In a browser, with the drive serial.

Expected: Warranty status + remaining term shown, matching what the vendor claimed.

Failure means: 'Out of warranty' or 'recertified - not covered' means you're relying entirely on the seller's vendor warranty.

Safe next step: Confirm the seller's vendor warranty length/return terms in writing; for recert, that's usually the coverage that matters.

Evidence to record

  • Initial `smartctl -a` output saved per drive (baseline).
  • For Seagate: `smartctl -l farm` output saved.
  • Extended SMART self-test result.
  • Badblocks log file (should be empty).
  • Post-burn-in `smartctl -A` showing no new bad sectors.
  • Vendor order date + RMA window expiration date (so you don't miss the return window).

Common mistakes

  • Skipping burn-in to save time, then losing a drive 60 days in — outside the vendor's 10-30 day RMA window.
  • Adding a new recertified drive directly to parity without burn-in — when it fails during rebuild stress, the array is at risk.
  • Not running the FARM cross-check on Seagate drives — SMART power-on-hours can be reset (the whole 2025 scandal); only `smartctl -l farm` exposes the true hours.
  • Buying SMR by accident for a RAID pool — DM-SMR drives stall or drop out during rebuilds. Verify the model is CMR before buying (beware the SATA-TRIM-on-a-mechanical-drive = SMR tell).
  • Trusting Amazon Renewed listings for HDDs — repeatedly implicated in fake-new HDD scandals; prefer SPD/GHD/manufacturer-direct with a stated warranty.
  • Buying eBay datacenter pulls for primary array slots — high variance, ~10-20% DOA rate; only acceptable for the backup tier.
  • Relying on a manufacturer warranty that's been gutted — Toshiba is refunding (at original price) instead of replacing; WD recert is 1yr, Seagate recert 6mo, and MR drives often carry NO mfr warranty. A vendor multi-year warranty usually matters more.
  • Buying a whole batch from one seller and one production lot — identical drives from the same lot tend to fail together. Stagger sources/dates.
  • Ignoring the Power-On-Hours-vs-FARM delta — a tiny SMART POH with a huge FARM POH is fraud; a large but consistent POH is an honestly-disclosed used drive.
  • Not inspecting the recert label / drive condition — a misplaced or scratched recert label, or wear around the screw holes, signals a fraudulent 'new.'
  • Forgetting the Power-Disable (P3) pin — modern enterprise SATA drives won't spin up in a legacy backplane without the SATA-to-SATA adapter, and get mistaken for dead.
  • Treating RAID as the backup — a bad drive (or a bad batch) becomes data loss without an offsite copy; SMART misses ~23% of failures with no prior warning.

Stop points

  • Stop before adding any recertified drive to a parity slot or pool without completing the full inspection + burn-in.
  • Stop before the RMA window closes (10-30 days from vendor receipt) — fail any drive that doesn't pass burn-in inside that window.
  • Stop before buying high-capacity drives this shortage from a vendor whose return policy is 'manufacturer warranty only' — manufacturer warranties have degraded (Toshiba refunding not replacing) or are effectively no-replace (out of stock).
  • Stop before putting a drive in a RAID pool until you've confirmed it's CMR, not SMR — DM-SMR fails rebuilds.
  • Stop before buying every drive from one seller and one lot — split sources so a bad batch can't take out enough drives to kill the array during a rebuild.

Last reviewed

2026-05-18

Source-backed checks

HomeTechOps turns official docs and conservative safety rules into a shorter runbook. These links are the source trail for the page direction.

Backblaze: Drive Stats for 2025Used as the largest public HDD reliability dataset (344,196 drives, 115.6M drive-days). Fleet AFR 1.36% in 2025; WDC 0.86%, Toshiba 1.86%, HGST 2.26%, Seagate 2.41%; WUH722222ALE6L4 22TB at 0.47% AFR.Tom's Hardware: Seagate 'new' drives caught with tens of thousands of hours of useUsed as the citation for the January 2025 Seagate FARM scandal — drives sold as new with SMART attribute 9 reset to 0 but FARM log showing 15,000-50,000 hours. Five of the dozen named retailers were on Seagate's own certified-partner list. Detection: smartctl -l farm cross-check.OpenZFS: RAIDZ overviewUsed for RAIDZ width thresholds, vdev geometry, and parity vs availability tradeoffs grounded in OpenZFS upstream docs.The Register: AI blamed as hard drives sold out for the yearUsed for the 2025-2026 HDD allocation reality: WD sold out for calendar 2026 with LTAs into 2027/2028, Seagate nearline fully allocated through 2026 — AI/hyperscale demand, multi-year lead times.diskprices.com: live HDD price-per-TB trackerUsed for the point-in-time $/TB snapshot (mid-2026 recert enterprise ~$22-26/TB); prices are volatile, verify live before quoting exact dollars.ServerPartDeals: FAQ and return policyUsed for SPD's vendor-backed warranty (typically 2-3yr), the Manufacturer-Recertified (no mfr warranty) vs Refurbished distinction, RMA window, and the Power-Disable (P3) pin adapter need.GoHardDrive: recertified/renewed drivesUsed for GHD's up-to-5-year vendor warranty on many recert/renewed drives — often more useful than a gutted manufacturer warranty for recert.Western Digital: Recertified products + warranty policyUsed for WD factory-recertified terms: 'up to 40% savings,' 1-year limited warranty, and that a recert date-code suffix may void the standard new-product warranty.Toshiba: Standard limited warranty (refund-in-lieu-of-replacement clause)Used to clarify the 2026 Toshiba issue: the 'may refund the purchase price in lieu of replacement' clause is longstanding warranty language — what changed in 2026 is that Toshiba began enforcing it (no stock), refunding at original price below current replacement cost.Western Digital: WD Red CMR/SMR disclosure (2020)Used for the WD Red SMR scandal legacy and WD's per-model CMR/SMR breakdown — why DM-SMR (EFAX) drives fail NAS RAID rebuilds.ServeTheHome: WD Red SMR vs CMR testedUsed for the evidence that DM-SMR drives stall/drop out under sustained RAID-rebuild writes; verify CMR by model suffix (and the SATA-TRIM-on-mechanical = SMR heuristic).smartmontools releases (FARM support since 7.4)Used to confirm `smartctl -l farm` requires smartmontools 7.4+ (7.4 released 2023-08-01; current 7.5).Seagate: Warranty & replacements (serial lookup)Used for the manufacturer warranty-by-serial lookup and label-authenticity verification before trusting a recert/used drive's stated coverage.

Planning a purchase?

We keep a source-backed, price-free comparison so you can buy once and right. No star ratings, every spec cited.

NAS Drives: WD Red vs IronWolf vs N300

Get the deal & firmware alerts

Home Stack Field Notes: NAS deals, firmware changes worth acting on, restore-test reminders, and new decision guides — plus the capacity & backup sizing cheatsheets from our calculators. Unsubscribe anytime.