Huh? What does how a drive size is measured affect the available address space used at all? Drives are broken up into blocks, and each block is addressable. This is irrelevant of if you measure it in GB or GiB and does not change the address or block size. Hell, you have have a block size in binary units and the overall capacity in SI units and it does not matter - that is how it is typically done with typical block sizes being 512 bytes, or 4096 (4KiB).
Or have anything to do with ware leveling at all? If you buy a 250GB SSD then you will be able to write 250GB to it - it will have some hidden capacity for ware-leveling, but that could be 10GB, 20GB, 50GB or any number they want. No relation to unit conversions at all.
Lmaydev@programming.dev 1 year ago
Power of 2 makes more sense to the computer. 1000 makes more sense to people.
Australis13@fedia.io 1 year ago
Of course. The thing is, though, that if the units had been consistent to begin with, there wouldn't be anywhere near as much confusion. Most people would just accept MiB, GiB, etc. as the units on their storage devices. People already accept weird values for DVDs (~4.37GiB / 4.7GB), so if we had to use SI units then a 256GiB drive could be marketed as a ~275GB drive (obviously with the non-rounded value in the fine print, e.g. "Usable space approx. 274.8GB").
wewbull@feddit.uk 1 year ago
They were consistent until around 2005 (it’s an estimate) when drives got large enough where the absolute difference between the two forms became significant. Before that everyone is computing used base 2 prefixes.
I bet OP does too when talking about RAM.
wischi@programming.dev 1 year ago
It’s not as simple as that. A lot of “computer things” are not exact powers of two. A prominent example would be HDDs.
Lmaydev@programming.dev 1 year ago
In terms of storage 1000 and 1024 take the same amount of bytes. So from a computer point of view 1024 makes a lot more sense.
It’s just a binary Vs decimal thing. 1000 is not nicely represented in binary the same 1024 isn’t in decimal.
abhibeckert@lemmy.world 1 year ago
What? No. A terabyte in 1024 units is 8,796,093,022,208 bits. In 1000 units it’s 8,000,000,000,000 bits.
The difference is substantial with larger numbers.