3

Various sources (e.g. 1, 2, 3, 4) claim that hard drives using the MBR partitioning scheme are limited to a maximum partition size of approximately 2 TB, and that you need GPT to support larger partitions.

However, I just discovered that one of our external HDDs uses the MBR scheme, but contains a single 3 TB partition.

disk management screenshot

How is that possible?

asked Mar 7, 2013 at 16:28

1 Answer 1

4

According to the "The gen on the 2TiB disc size limit" FGA, the limit comes from MBR having a 32 bits wide field for a partition's sector count. With 512 byte sectors (the usual size), you can address only up to 512 ×ばつ 232 bytes, or exactly 2 TiB.

Many disks these days have larger physical sectors of 4 KiB (called "Advanced Format" in various places); however, they almost always report each physical sector as eight logical 512-byte sectors, in order to remain compatible with all existing software (which might make incorrect assumptions about sector size always being 512 b). So they are still affected by MBR's limitations.

But I'm guessing (although the screenshot doesn't show) that your disk probably reports the logical sector size as 4 KiB as well, and since the MBR can address up to 232 sectors, you now get a partition limit of 4096 ×ばつ 232 = 16 TiB.

(This is not to be interpreted as "MBR is okay again". No, MBR with its primary/logical partitions is still as horrible as it was before.)

answered Mar 7, 2013 at 17:02
2
  • Well guessed! fsutil fsinfo ntfsinfo z: shows Bytes Per Sector: 4096. Commented Mar 7, 2013 at 17:09
  • 2
    Some external disks -- even some containing disk drives with 512-byte physical sectors -- report that they have 4096-byte sectors. To the best of my knowledge, no commonly-available internal hard disks yet report a 4096-byte sector size, although I'd be surprised if such things didn't start showing up eventually. Commented Mar 8, 2013 at 2:41

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.