I want to know the maximum number of partitions in a hard drive.
But I'm not sure whether that is affected by factors such as hard drive types or partition scheme or not. So, I'll just write down all possible cases that I can think of.
Questions
- Does the number of maximum partitions per hard drive affected by
- partition scheme (GPT vs MBR)
- The type of hard drive (SCSI/SATA vs IDE - because SATA and SCSI are both treated as SCSI)
- What is the maximum number partitions for a hard drive for each case? I think the possible cases include
- GPT:
- max num of partition per SCSI/SATA hard drive?
- max num of partition per IDE hard drive?
- MBR: for MBR, there's the concept of
primary,logicalandextendedpartition.logicalpartitions only exist if anextendedpartition exists (and there can only be at most ONEextendedpartition per hard drive). So the questions are:- Does the number of
primarypartitions affect the number of possiblelogicalpartition? (i.e. Does it make any differences to the maximum number oflogicalpartitions if I have 0 or 1 or 2 or 3primarypartitions?) - max num of
logicalpartition per SCSI/SATA hard drive? - max num of
logicalpartition per IDE hard drive?
- Does the number of
- GPT: