I don't know if it's a rare condition, it's one of the sane ways to use larger disks on older machines. Or when the system firmware is buggy and, e.g., wont properly fall back to a second disk when booting a software RAID setup.
First, you'd check that the machine is not booted with EFI. See “How to know if I'm booting using UEFI?” to check.
On Linux:
Under Linux, you should see a few indicators if you run gdisk -l /dev/DISK
- Partition table is GPT ("Found valid GPT with protective MBR; using GPT.")
- There is a BIOS boot partition (listed as code EF02). This is where most of GRUB lives (it replaces the sectors that in a traditional MBR are between the boot sector and the first partition).
Example, from one of my disks:
# gdisk -l /dev/sdd
GPT fdisk (gdisk) version 1.0.3
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Disk /dev/sdd: 5860533168 sectors, 2.7 TiB
Model: ST3000VN000-1HJ1
Sector size (logical/physical): 512/4096 bytes
Disk identifier (GUID): 3F3F7901-A38A-42FF-A7BA-8FBD1C35FB11
Partition table holds up to 128 entries
Main partition table begins at sector 2 and ends at sector 33
First usable sector is 34, last usable sector is 5860533134
Partitions will be aligned on 8-sector boundaries
Total free space is 5582 sectors (2.7 MiB)
Number Start (sector) End (sector) Size Code Name
1 2048 259024 125.5 MiB 8300 Linux filesystem
2 260096 517135 125.5 MiB 0700 Microsoft basic data
3 518144 1953524128 931.3 GiB 8300 Linux filesystem
4 1953525760 3907033263 931.5 GiB 8300 Linux filesystem
5 3907035136 5860533134 931.5 GiB 8300 Linux filesystem
128 34 2047 1007.0 KiB EF02 BIOS boot partition
On Windows:
Note this a different disk I quickly set up for a VM.
diskpart's list disk command shows a * in the GPT column if a disk is using GPT:
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 40 GB 0 B
Disk 1 Online 20 GB 0 B *
Unfortunately, list partition (after selecting the disk using select disk 1) shows the two partitions as "unknown":
DISKPART> list partition
Partition ### Type Size Offset
------------- ---------------- ------- -------
Partition 1 Unknown 4096 KB 17 KB
Partition 2 Unknown 19 GB 5120 KB
but if you detail them (after select partition 1), you get the type GUID:
DISKPART> detail partition
Partition 1
Type : 21686148-6449-6e6f-744e-656564454649
Hidden : Yes
Required: No
Attrib : 0000000000000000
Offset in Bytes: 17408
and 21686148-6449-6e6f-744e-656564454649 means BIOS boot partition. (0fc63daf-8483-4772-8e79-3d69d8477de4, by the way, is a generic Linux partition).
Alternatively, in Disk Management, select the disk, pick Properties, and check the Volumes tab. That will tell you if the "partition style" is MBR or GPT. Unfortunately there does not appear to be a way to get the partition types from Disk Management.