RAID vs JBOD for a Home NAS: Which Should You Actually Use?
If you are building a home NAS and wondering whether to use RAID or JBOD, the short answer is: use RAID unless you have a specific, well-understood reason to choose JBOD. JBOD (“Just a Bunch Of Disks”) presents each drive as a separate volume or spans them into one large pool with no parity or mirroring. This guide breaks down exactly what JBOD does, when it makes sense for a home user, and why RAID is the safer default for most NAS builds.
What JBOD Actually Means for Your Home NAS
JBOD is a storage configuration where the operating system treats multiple physical drives as independent volumes or combines them into one logical volume without any redundancy. Unlike RAID, JBOD offers no parity data, no mirroring, and no automatic recovery if a drive fails.
How JBOD Works in Practice
There are two common implementations of JBOD in a home NAS:
- Spanned JBOD: Drives are concatenated into a single volume. Data is written sequentially across drives until one fills, then moves to the next. If any single drive fails, the entire spanned volume is lost — you cannot read data from the surviving drives because the filesystem spans across all of them.
- Independent JBOD: Each drive appears as a separate mount point or drive letter. This is essentially the same as having multiple external hard drives plugged in — each drive has its own filesystem, and a failure only affects that drive’s data.
In independent JBOD mode, losing one drive means losing only the data on that specific drive, not everything. In spanned JBOD mode, a single drive failure can render the entire pool unreadable. Always verify which mode your NAS software uses before committing data.
JBOD vs RAID NAS: The Core Differences
The fundamental difference between JBOD and RAID is fault tolerance. RAID uses parity (RAID 5/6) or mirroring (RAID 1/10) to keep your data accessible after a drive failure. JBOD does neither.
| Feature | JBOD | RAID 1 | RAID 5 | RAID 6 |
|---|---|---|---|---|
| Usable capacity | 100% of all drives | 50% (1 drive usable per pair) | (n-1) drives | (n-2) drives |
| Fault tolerance | None | 1 drive failure | 1 drive failure | 2 drive failures |
| Read performance | Single-drive speed | Improved (read from both) | Improved (striping + parity) | Improved |
| Write performance | Single-drive speed | Similar to single drive | Slower (parity calculation) | Slower |
| Data loss risk on failure | High (depends on mode) | Low | Low | Very low |
Should I Use JBOD or RAID? A Home-User Decision Framework
Most home NAS guides assume you need enterprise-grade redundancy. That’s not always true. Here is a practical decision tree based on your actual situation.
When JBOD Is Genuinely Reasonable for a Home NAS
JBOD makes sense in three specific home scenarios:
Good Fit for JBOD
- Archival cold storage: You have a separate, verified backup (e.g., Backblaze, a second NAS offsite) and the JBOD pool is a convenience copy for local access.
- Mixed leftover drives: You have a collection of different-sized drives from old computers (2TB, 4TB, 1TB) and want to use them all without wasting capacity. RAID would force you to match the smallest drive or waste space.
- Non-critical media libraries: Movies, TV shows, or music that you could re-download or re-rip. Losing this data is an inconvenience, not a disaster.
Bad Fit for JBOD
- Family photos and documents: Irreplaceable data that would cause genuine loss if gone.
- Work files or project archives: Anything with time investment or monetary value.
- No separate backup exists: If the NAS is your only copy of the data, JBOD is gambling with your files.
Why RAID Is the Default Recommendation
RAID (specifically RAID 1, 5, or 6) protects against the most common hardware failure in a home NAS: a single drive dying after 3-5 years of continuous operation. For most home users, the cost of losing a drive’s worth of data far exceeds the premium of buying one extra drive for parity.
If you have 4 drives and use RAID 5, you lose 25% of raw capacity to parity but gain the ability to survive any single drive failure without data loss. With JBOD, you get full capacity but zero protection. The trade-off is rarely worth it for primary storage.
Many home NAS builders overlook that RAID protects against drive failure, not against accidental deletion, ransomware, or physical theft. Even with RAID 6, you still need a separate backup. JBOD users who also maintain a real backup (e.g., a cloud sync or second NAS) are actually in a better position than RAID users who skip backups entirely. RAID is not a substitute for a backup strategy — it is a layer of uptime protection.
JBOD NAS Explained: Real-World Capacity Math
Let’s compare usable storage for a 4-bay NAS with mixed drives using JBOD versus RAID.
| Drive Setup | JBOD Usable | RAID 5 Usable | RAID 1 (2+2) |
|---|---|---|---|
| 4 x 4TB (same size) | 16TB | 12TB | 8TB |
| 2 x 4TB + 2 x 2TB (mixed) | 12TB | 6TB (limited to smallest) | 4TB (mirrored pairs) |
| 1 x 8TB + 3 x 4TB (mixed) | 20TB | 12TB (limited to smallest) | 8TB (mirror the 8TB with a 4TB? Not possible) |
The mixed-drive scenario is where JBOD shines. RAID forces all drives to match the smallest capacity in the array, wasting space on larger drives. JBOD lets you use every gigabyte. If you are building a NAS from spare drives you already own, JBOD might be the only way to get meaningful capacity without buying new matched drives.
RAID vs JBOD Home Server: Performance and Power Considerations
Performance is rarely the deciding factor for a home NAS, but it matters for specific workloads.
JBOD Performance Characteristics
In independent JBOD mode, each drive operates at its own speed. A single file transfer is limited to the speed of one drive (typically 140-200 MB/s for a 5400 RPM HDD). Spanned JBOD can sometimes improve sequential write speeds because data is written to multiple drives in sequence, but it does not stripe data like RAID 0 — so you don’t get the parallel read/write benefits.
RAID Performance Characteristics
RAID 5 and RAID 6 offer improved read speeds because data is striped across multiple drives. Write speeds are slower due to parity calculation overhead, especially on consumer hardware without a hardware RAID controller. RAID 1 offers fast reads (data can be read from both mirrors simultaneously) but write speeds similar to a single drive.
If power consumption is a concern, JBOD has a slight edge because all drives can spin down independently when not in use. RAID arrays often keep all drives spinning to maintain parity consistency. For a 4-drive NAS, the difference is roughly 3-8W at idle — see our guide on reducing NAS power consumption for more details.
Software Support: JBOD in TrueNAS, Unraid, and Others
Different NAS operating systems handle JBOD differently. Understanding this helps you decide which software fits your storage strategy.
| NAS OS | JBOD Support | Notes |
|---|---|---|
| TrueNAS (ZFS) | Striped vdev (no redundancy) | ZFS does not have a “JBOD” mode. A single-drive vdev is effectively JBOD. Spanned JBOD requires a striped vdev of multiple disks — this is RAID 0 behavior, not true JBOD. |
| Unraid | Native JBOD + parity | Unraid’s unique model lets you add drives of any size, with a single parity drive protecting all data. This is JBOD-like flexibility with RAID-like protection — a strong middle ground. |
| OMV (mergerfs) | Full JBOD (mergerfs pool) | mergerfs pools drives into a single namespace without redundancy. Each drive keeps its own filesystem. This is the purest form of independent JBOD. |
| Windows Storage Spaces | Simple (no resiliency) | Windows calls this “Simple” storage space. It behaves like spanned JBOD — one drive failure loses the entire pool. |
If you are considering TrueNAS, note that ZFS strongly prefers matched drives and redundancy. For mixed drives, TrueNAS vs Unraid is a critical comparison — Unraid’s parity-based model is much closer to “JBOD with protection” than traditional RAID.
When JBOD Makes Sense for a Home NAS (Real Examples)
Here are three concrete home NAS scenarios where JBOD is a legitimate choice.
You have a 5-year-old PC with a 256GB SSD and three old hard drives (1TB, 2TB, 500GB). You want to use all of them for a Plex library. JBOD (via mergerfs or Unraid) lets you pool them into one 3.5TB volume. RAID would waste the 2TB drive because it would be limited to 500GB per drive in a RAID 5 array.
You have a primary NAS with RAID 5 at home, and you want a second NAS at a family member’s house for offsite backups. That second NAS can use JBOD — it’s only a copy of data you already have. If a drive fails, you replace it and re-sync from the primary.
Your budget is $200 for drives. You buy two 4TB drives on sale. RAID 1 gives you 4TB protected. JBOD gives you 8TB unprotected. If you have a cloud backup (e.g., Backblaze B2 at ~$5/month for 1TB), JBOD + cloud backup might be cheaper and give you more local capacity than RAID alone.
How to Choose: Quick Decision Rule for Home NAS Builders
Here is a simple rule based on your backup status and data value.
- You have a separate, verified backup of all data: JBOD is fine. Use independent JBOD (each drive separate) or Unraid’s parity model for best flexibility.
- You have no backup and the data matters: Use RAID 1 (2 drives) or RAID 5 (3+ drives). Do not use JBOD.
- You have mixed drives of different sizes: Consider Unraid or OMV with mergerfs + a separate backup. Traditional RAID wastes too much space.
- You only have 2 drives: RAID 1 is the obvious choice. JBOD gives you double capacity but zero protection — the risk is rarely worth it for a 2-drive setup.
- Your NAS is for Plex/Emby media only: JBOD is acceptable if you can re-acquire the media. Add a parity drive (Unraid) or a cheap cloud backup for peace of mind.
Bottom Line: Which Should You Choose?
For the vast majority of home NAS builders, RAID is the safer, simpler choice. RAID 5 with three or four matched drives gives you a good balance of capacity (67-75% usable) and protection (survive one drive failure). If you have mixed drives or a very tight budget, JBOD can work — but only if you have a separate, verified backup elsewhere.
If you want the flexibility of JBOD (mixed drive sizes, easy expansion) with some protection, look at Unraid’s parity model. It is the closest thing to “JBOD done right” for home users. For traditional RAID, TrueNAS with ZFS is the gold standard — just be prepared to match your drive sizes. Read our RAID 1 vs RAID 5 comparison for help choosing between those two common levels.
Frequently Asked Questions
Does JBOD lose all my data if one drive fails?
It depends on the JBOD mode. In spanned JBOD, a single drive failure can make the entire volume unreadable because the filesystem is distributed across all drives. In independent JBOD, each drive has its own filesystem, so only the data on the failed drive is lost — the other drives remain accessible. Always check which mode your NAS software uses. For example, mergerfs (OMV) uses independent JBOD, while Windows Storage Spaces “Simple” mode uses spanned JBOD.
Is JBOD ever a good idea for a home NAS?
Yes, in specific scenarios. JBOD is a good idea if you have a separate, verified backup of all data and want to maximize usable capacity from mixed-size drives. It also works well for non-critical media libraries (Plex, Emby) where losing data is an inconvenience rather than a disaster. For archival cold storage with an offsite backup, JBOD gives you full capacity at minimal cost. However, for primary storage of family photos, documents, or work files, RAID is strongly recommended.
What’s the difference between JBOD and RAID 0?
JBOD (spanned) and RAID 0 both offer zero fault tolerance, but they differ in performance and data layout. RAID 0 stripes data across all drives in parallel, which improves both read and write speeds — a 4-drive RAID 0 can reach 500-800 MB/s with HDDs. JBOD writes data sequentially, filling one drive before moving to the next, so performance is limited to a single drive’s speed (140-200 MB/s for HDDs). RAID 0 also has a higher risk: if any drive fails, all data is lost. Spanned JBOD has the same risk. Independent JBOD is safer because each drive is self-contained.
Should I use RAID or JBOD if I already have backups elsewhere?
If you have a reliable, tested backup (e.g., Backblaze, a second NAS at a different location, or regular cloud syncs), JBOD becomes a reasonable choice. Your backup is your safety net, so the NAS is a convenience copy. JBOD gives you maximum local capacity for the money. However, consider the recovery time: if a JBOD drive fails, you must restore that data from backup, which could take hours or days over a slow internet connection. RAID keeps you running immediately after a drive failure. For many home users, the convenience of RAID (no downtime during a drive replacement) is worth the capacity penalty even with backups.
Last verified: July 09, 2026. Specifications cross-checked against manufacturer documentation where available.
🛡 Shop Recommended Hardware
Prices and stock verified regularly by our affiliate partners. As an affiliate, HomeLabCost may earn a commission on qualifying purchases at no extra cost to you.
Browse Hardware Picks →