RAID Calculator

Utilities Client-side raid storage disk capacity redundancy raid0 raid1 raid5 raid6 raid10

This tool runs entirely client-side, in your browser: your data is never sent anywhere.

What it does

Calculates the usable storage capacity, storage efficiency, and fault tolerance of a RAID array based on the number of disks, the capacity of each disk, and the RAID level. Useful when planning a NAS, server, or storage pool and you need to know how much usable space you'll actually end up with — and how many drives can fail before you lose data.

Try it

How it works

For each RAID level, the calculator applies the standard formula for usable capacity and minimum/maximum drive-failure tolerance:

RAIDMin disksUsable capacityFault tolerance
RAID 02N × size (100% efficiency)0 disks — no redundancy
RAID 12size (capacity of one disk)N − 1 disks (as long as 1 survives)
RAID 53(N − 1) × size1 disk
RAID 64(N − 2) × size2 disks
RAID 104 (even)(N / 2) × size1 disk per mirrored pair
  1. You enter the RAID level, the number of disks in the array, and the capacity of a single disk (all disks are assumed to be the same size, which is the standard, recommended RAID configuration).
  2. The tool validates the disk count against the minimum required disks for that RAID level (and, for RAID 10, that the disk count is even).
  3. It then computes:

Notes