Johnny said:
Thanks for the information. Western Digital should have added enough
space, no matter how they figure it, to show up in Disk Management as a
500 GB hard drive, or Disk Management should use the same system the
hard drive manufacturers use, and just show it as a 500 GB hard drive.
If you do "dd --list" in command prompt, you'll see it is
just slightly bigger than 500GB (not GiB). I use this utility,
to get sizes for things, accurate to the nearest byte.
http://www.chrysocome.net/downloads/dd-0.5.zip
This is part of the output of dd --list. You
redirect it like this, to be able to copy and
paste the output later. The output is apparently
going to stderr instead of stdout, which is
why the necessary redirect is a bit weird. The "2>"
redirects stderr messages into the text file.
dd --list 2> mydisks.txt
And this is an entry for my 500GB disk. Copied
out of the mydisks.txt file.
\\?\Device\Harddisk1\Partition0
link to \\?\Device\Harddisk1\DR1
Fixed hard disk media. Block size = 512
size is 500107862016 bytes
The "Partition0" entry is an entry describing the
entire disk. Whereas "Partition1" describes the
size of just the first partition (which will be
smaller).
And 500,107,862,016 is just slightly bigger than 500GB,
so no class action lawsuit over false capacity claims
is necessary. They have lawyers design the hard
drives, rather than engineers, so they can't be
sued for false advertising
Your drive will not necessarily have the same value.
The value has to be factorable by certain numbers,
so there's some justification for the size. But
I'm too lazy to figure out what that might be. It
might be divisible by both 9 and by 7. And also by
512, which is a legacy sector size.
Divisibility by 63*512, is for rounding to the
nearest track of "fake" large disk geometry. Why
that's important, I haven't a clue. I wouldn't
expect any software to have a heart failure if that
wasn't true. And "63*512" has nothing to do with the
actual design of the platter data layout. The layout
takes full advantage of the LBA nature of modern
disks, and each track can have a variable amount
of data (zoned layout). It means, in all probability,
there is a bit more, perfectly good capacity on
the disk, but it just abruptly ends at 500,107,862,016.
Paul