CMR vs SMR Hard Drives for NAS – The 2026 Guide
Keywords: cmr vs smr nas drive, smr nas problem, which nas drives are cmr, wd red smr, seagate nas drives
If you've spent any time researching NAS drives, you've probably seen people screaming about CMR and SMR. It sounds like alphabet soup, but it actually matters — a lot. Using the wrong type of drive in a NAS can lead to painfully slow rebuilds, dropped arrays, and data loss.
I got bitten by this once. Bought a batch of cheap WD Red drives for a TrueNAS build, didn't check the fine print, and spent a miserable weekend watching a resilver crawl along at 2 MB/s before the pool dropped offline. Since then, I always check. Let me save you that experience.
What CMR and SMR Actually Mean
Hard drives store data on spinning platters. The read/write head sits above the platter and writes磁性 tracks side by side.
CMR (Conventional Magnetic Recording)
This is the traditional method. Each track sits right next to the previous one without overlapping. When the drive writes a file, it writes to an empty area of the platter, and the performance stays consistent whether the drive is fresh or mostly full.
SMR (Shingled Magnetic Recording)
SMR overlaps tracks like shingles on a roof. This lets manufacturers pack more data onto the same platter, which is why SMR drives are usually cheaper per terabyte. The problem: when the drive needs to rewrite a track that's already partially covered by the next one, it has to read the adjacent tracks, modify them, and write them all back. This "read-modify-write" cycle absolutely tanks write performance under certain conditions.
For a desktop drive where you mostly write files sequentially and don't do heavy random writes, SMR is fine. For a NAS drive that handles RAID rebuilds, ZFS resilvers, and random I/O from multiple users, it's a disaster.
Why SMR Drives Break NAS Setups
Here's what happens when an SMR drive fails in a RAID or ZFS array:
RAID rebuild nightmare
When a drive dies in a RAID 5 or RAIDZ1 array, the controller needs to read every sector of every remaining drive to reconstruct the missing data. With CMR drives, this process is limited by read speed — maybe 150 MB/s. With SMR drives, the rebuild itself causes massive write amplification because the remaining SMR drives are simultaneously trying to handle the rebuild writes. I've seen RAID 5 rebuilds on SMR drives take weeks instead of hours.
ZFS resilver problems
ZFS resilvers are even more sensitive. ZFS reads every block to verify data integrity. When it writes the rebuilt blocks back to SMR drives, the drive's internal cache fills up, the drive starts shingling operations, and the resilver slows to a crawl. People on the TrueNAS forums report resilver times of 5-10x longer on SMR drives compared to CMR.
The performance cliff
SMR drives have a "cache zone" — a fast area of the platter that hasn't been shingled yet. When you're writing to an empty or lightly used SMR drive, it performs almost like a CMR drive. Once that cache fills up (usually after writing 20-50 GB of sustained data), performance drops off a cliff. Write speeds can fall from 150+ MB/s to under 10 MB/s.
This means your NAS might feel fast for the first few weeks, then suddenly become unusable during any heavy operation.
How to Tell If a Drive Is CMR or SMR
Manufacturers aren't always upfront about this. Here's how to figure it out.
Check the model number
Every drive model can be looked up on the manufacturer's spec sheet. The key number is recording technology. If it says CMR, you're good. If it says SMR (or "host-managed SMR" or "device-managed SMR"), avoid it for NAS use.
The cheat sheet (2026 status)
Drives that ARE CMR (safe for NAS):
| Brand | Model Line | Capacities |
|---|---|---|
| Seagate | IronWolf | All capacities |
| Seagate | IronWolf Pro | All capacities |
| Seagate | Exos | All capacities |
| WD | Red Plus | 2TB-14TB |
| WD | Red Pro | 2TB-24TB |
| WD | Gold | All capacities |
| Toshiba | N300 | All capacities |
| Toshiba | N300 Pro | All capacities |
| HGST | Ultrastar | All capacities |
Drives that ARE SMR (avoid for NAS):
| Brand | Model Line | Capacities |
|---|---|---|
| WD | Red (non-Plus, non-Pro) | 2TB-6TB |
| WD | Blue | Most capacities |
| Seagate | Barracuda | Most desktop capacities |
| WD | Green | All capacities |
The biggest trap is the old WD Red line (not Red Plus, not Red Pro). WD quietly switched these to SMR around 2018-2020. If you see a WD Red at a suspiciously low price, it's probably SMR. The Red Plus line, introduced in 2020, went back to CMR. Always check the exact model.
What About Used Enterprise Drives?
If you're buying used drives, you're generally safe from SMR because enterprise drives are almost all CMR. Companies don't put SMR drives in server environments because the write performance is too unpredictable. The main exceptions:
- WD Ultrastar HC320 (8TB): Some batches are CMR, some are SMR. Check the exact model number.
- Seagate Archive drives: These are specifically SMR archive drives. They're cheap and marketed for cold storage — not NAS.
SMART check before trusting a used drive
Before putting any used drive into service:
- Check SMART data:
smartctl -a /dev/sdX - Look for Reallocated Sectors, Current Pending Sector, and Offline Uncorrectable — all should be zero
- Run a quick write test:
badblocks -w /dev/sdX(this is destructive, only on empty drives) - Check Power-On Hours — under 30,000 hours is good, under 50,000 is acceptable for enterprise drives
The Budget Question: Is SMR Ever Okay?
Yes, but only in specific situations:
- Cold storage / archive NAS: If you write data once and rarely read it back (like a media archive you only access occasionally), SMR drives can save you money.
- Single drive, no RAID: If you're using ZFS with a single disk (no redundancy) and the drive is mostly read-heavy, SMR won't cause the worst-case scenarios.
- External backup drive: If you're using a USB external drive for occasional backups, SMR is perfectly fine.
But for any NAS with RAID, RAIDZ, or any setup where you need reliable write performance during drive failures — stick with CMR. The $20-30 savings per drive isn't worth the headache.
Drive Size Planning for NAS
Once you've decided on CMR drives, how big should you go?
- 4TB: Good for personal backups and a small media library. Two drives in a mirror = 4TB usable.
- 8TB: The sweet spot for most home NAS builds. Enough for a family media library plus backups.
- 12-16TB: For serious media hoarders or multi-user setups. Pricier per TB, but fewer drives means fewer points of failure.
- 18TB+: Enterprise territory. Great if you need the density, but the per-drive cost is high.
For a RAIDZ1 pool with 4 drives, you lose one drive worth of capacity to parity. So four 8TB drives give you 24TB usable. Four 4TB drives give you 12TB. Plan accordingly.
Bottom Line
CMR vs SMR isn't a theoretical debate — it's a practical choice that directly affects whether your NAS works reliably or spends days crawling through rebuilds. Always buy CMR drives for NAS use. Always verify the recording technology before purchasing. If you're buying used, enterprise CMR drives are your best bet for value and reliability.
The extra $20 per drive is cheap insurance against the kind of weekend I spent watching a resilver at 2 MB/s. Trust me on this one.