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
,logical
andextended
partition.logical
partitions only exist if anextended
partition exists (and there can only be at most ONEextended
partition per hard drive). So the questions are:- Does the number of
primary
partitions affect the number of possiblelogical
partition? (i.e. Does it make any differences to the maximum number oflogical
partitions if I have 0 or 1 or 2 or 3primary
partitions?) - max num of
logical
partition per SCSI/SATA hard drive? - max num of
logical
partition per IDE hard drive?
- Does the number of
- GPT: