bitcalc

💾 Capacity Converter

Decimal and binary side by side: why your 4 TB drive reports 3.64 TB, what Windows and Linux actually count, and how much survives RAID.

Convert a size

Dezimal (SI) Binär (IEC)

What survives RAID?

The size in the field above is treated as the capacity of a single disk.

Details, fault tolerance and layout in the RAID calculator

Why 4 TB turns into 3.64 TB

It happens after every disk purchase: you bought 4 TB, the system reports 3.64 TB. No fraud and no defect — just an argument about prefixes that has been running since the 1990s. This tool puts both ways of counting side by side.

Vendors count in decimal, systems count in binary

Drive, SSD and USB vendors count in decimal: 1 TB = 1,000 GB = 1,000,000,000,000 bytes. Operating systems count in binary, because storage is organised in powers of two: 1024 bytes = 1 KiB. That turns 4,000,000,000,000 bytes into 3.64 TiB. The value is identical, only the divisor differs: 1 TiB equals 1.0995 TB.

kB or KiB? The standard is unambiguous

Since IEC 80000-13 (adopted by NIST) decimal prefixes (kB, MB, GB, TB) mean powers of ten, while binary prefixes (KiB, MiB, GiB, TiB) mean powers of two. Calling 1024 bytes a "kilobyte" is therefore wrong by the standard — yet it survives in countless displays. We show both columns so you can quote the right one in a ticket or a datasheet.

What Windows, Linux and df -h display

Windows shows the binary number and still calls it "TB" — which is why the 4 TB drive appears as "3.63 TB" in Explorer. Linux is split, and the man pages are explicit: df -h and ls -lh use powers of 1024 (binary), while df -H and ls -lh --si use powers of 1000. The same disk reads "3.6T" or "4.0T" depending on the flag. Tools like lsblk, fdisk -l and smartctl report raw byte sizes — no ambiguity there.

Bits, bytes and link speed

Networking and interfaces count in bits: 8 bits = 1 byte. A gigabit link (1 Gbit/s) therefore moves 125 MB/s in theory, a 10-gigabit card 1.25 GB/s. PCIe, SATA and USB speeds are decimal in bits as well — compare those to file sizes in GiB and you get the maths wrong in two places at once.

After RAID and the filesystem

RAID costs capacity on top: RAID 5 gives up one disk to parity, RAID 6 two, RAID 10 half of them. And the filesystem takes more — ext4 reserves 5 % for root by default, a ZFS pool with parity needs room for metadata, snapshots and slop. The RAID bridge below applies the size from the input field to the array, so "6 × 4 TB in RAID 6" becomes "16 TB usable = 14.55 TiB" right away.

Typical cases in everyday admin work

You bought a drive or SSD and the vendor figure does not match what the file manager reports.

An SSD is sold as "960 GB" and reports 894 GiB — same pattern, different size class.

Sizing a backup target: "is a 20 TB drive enough for an 18 TiB repository?"

Comparing throughput: 500 MB/s read against a 4 Gbit/s link — does that add up?

Capacity planning for a RAID array or ZFS pool, including what actually remains usable.

❓ Common questions

Is my drive faulty if it only shows 3.64 TB?

No. All 4,000,000,000,000 bytes are there. Displayed in binary units that is 3.64 TiB. Only when a checksum tool sees fewer bytes than the datasheet promises is something actually wrong.

Why are SSDs advertised as 960 GB or 1 TB instead of 1 TiB?

Because round decimal numbers sell better. A 960 GB SSD equals 894 GiB, a 1 TB SSD equals 931 GiB — the difference is the overhead for controller reserve and wear levelling, which SSD capacities account for.

Is 1 GB of RAM the same as 1 GB of storage?

No, and this is the most common mix-up. RAM is counted and labelled in binary: 16 GiB. Mass storage is sold in decimal. So "16 GB RAM" usually means 16 GiB, while "16 GB SSD" is only 14.9 GiB.

Does the tool calculate in bits or bytes?

In bytes internally, but it prints the bit values too, because networks and interfaces need them. Everything is computed in your browser — nothing is sent to a server.

📚 Sources & further reading

Standards: IEC on binary prefixes and NIST on binary prefixes. On our blog: the number worlds of an admin, understanding drive performance, RAID in practice and ZFS in practice.