Why is it that advertised disk space is almost always higher than the disk space reported by the UI? For example, I have an "80 gb" hard drive, but the iTunes UI indicates only 74. I usually see this as well with hard disks and the amount reported with the drive letter.
相关问题
- How to make Motherboard Beep through C++ Code? [cl
- Hardware breakpoints EXCEPTION_SINGLE_STEP all the
- How do I change my Active Sound Card on the Fly?
- How does a fingerprint scanner protect its store o
- Arm Board Bring Up
相关文章
- How would you handle a special case in this digita
- Detect if phone's keyboard is slid out
- Block physical keyboard input in EditText
- How I can receive hardware key events in sleep mod
- detecting the memory page size
- Serial versus SPI
- Creating a virtual monitor (the display device)
- How does a CPU idle (or run below 100%)?
Additionally many times they advertise gigabytes as slightly inaccurate numbers, which result in differences. You can see this in the disclaimer text on the outside of most hard drive boxes!
The main culprit is using base 10 vs. base 2 to list the storage size. It effectively becomes a rounding error.
There is a movement to try and list storage size with base 2 values instead of base 10 to reflect the true size.
Marketing considers 80 gigabytes to be 80,000,000,000 bytes. The OS considers 80 gigabytes to be 85,899,345,920 bytes.
http://www.google.com/search?q=80000000000+bytes+in+GB
Say manufacturer consider a MB to be 1024KB; others 1000KB. Similarly for GB. Some say 1024MB; others 1000MB.
Then, that refers to the un-formatted size. Formatting takes up some space.
There are 3 reasons why the amount of space you can actually use is different from that listed for the drive, all of which work against you:
Of these, the first two can influence the amount of space reported by the drive (though IIRC the 2nd one was more of an issue with FAT32 than NTFS). The last one only influences the amount of free space remaining, but will still prevent you from using the full capacity of your drive.
Usually due to some partitioned space that the OS or some software takes and hides for backup or system purposes.