Computing HDD/SSD Capacity after a format

NewbieTechGodII

Distinguished
Aug 29, 2006
534
0
18,990
I'm trying to figure out how to compute the formatted capacity of a HDD/SSD (Windows/NTFS). I am not asking why does Windows say my HDD/SSD capacity is X when the manufacturer says it's Y, I know that answer.

The reason I am asking is that I am going to move my OS from a 3x HDD RAID0 to a single SSD. I want to avoid having to RAID two SSDs because of the lack of TRIM support and the fact that RAID anything just adds a layer of unnecessary grief and complication. While many recommended SSDs are in the 256GB range, that size may not meet my space requirements.

Given the prices of SSDs, you can see why this is important.
 
Solution
HDD & SSD drive manufacturers calculate 1 Gigabyte as 1,000,000,000 bytes.
Microsoft and memory RAM manufacturers calculate 1 Gigabyte as 1,073,741,824 bytes.

The difference between the 2 methods is 7%.

So subtract 7% from any HDD or SSD and that is your formatted capacity.
HDD & SSD drive manufacturers calculate 1 Gigabyte as 1,000,000,000 bytes.
Microsoft and memory RAM manufacturers calculate 1 Gigabyte as 1,073,741,824 bytes.

The difference between the 2 methods is 7%.

So subtract 7% from any HDD or SSD and that is your formatted capacity.
 
Solution

NewbieTechGodII

Distinguished
Aug 29, 2006
534
0
18,990


Thanks, Dereck, that was EXACTLY what I was looking for!