1TB HDD missing 60gb
HDD manufacturers use powers of 1000 to calculate sizes.
For them,
* 1 KB is 1000 bytes
* 1 MB is 1000 KB = 1.000.000 bytes
* 1 GB is 1000 MB = 1.000.000.000 bytes
* 1 TB is 1000 GB = 1.000.000.000.000 bytes
Operating system works with multiples of 1024 instead of 1000, so 1 GB actually means 1 GiB (for 1 binary GB) :
* 1 KiB = 1024 bytes
* 1 MiB = 1024 x 1024 bytes
* 1 GiB = 1024 x 1024 x 1024 bytes
* 1 TiB = 1024 x 1024 x 1024 x 1024 bytes
Windows shows GB instead of GiB because GiB is only a recent standard and most people are already used and aware of the different unit value for file sizes.
So if you take 1.000.000.000.000 and divide it by 1024 you get :
* 1.000.000.000.000 bytes / 1024 = 976,562,500 KiB / 1024 = 953,674.31 MiB / 1024 = 931.32 GiB
@Jurrunio is mostly wrong, mostly in the sense that as with any file system, there is some portion of this total amount of disk space reserved to hold information about the files and folders (metadata, file name, in which folder it belongs, where on hard drive file starts, when it was last modified, when it was last accessed, which user created it and so on) you have on the disk, but when Windows Explorer shows you that 931 GB value, it's the correct one, including the area reserved by the file system to store "metadata" there.
It's just important to remember because if you're actually going to try to create a single file and write 1.000.000.000.000 bytes in it, you won't be able to do it, because probably around 20-50 MB of disk space will be already used by the file system to hold information about the file and other files you may have on the hard drive.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now