I am trying to install Windows Server 2008. In the disk partition step, I saw my disk partitions are recognized by the installation program as :

Physical Disk 1:
100M system partition
80G  dynamic partition

Physcical Disk 2:
500G primary partition
500G primary partition

So what's the difference between system, dynamic and primary partition?

Which partition should I choose for an operating system?

Thanks!

link|improve this question

33% accept rate
feedback

2 Answers

The "system" partition on Windows 7/2008 is the 100 MByte partition that contains the hardware-related files and the Boot folder that tell a computer where to look to start Windows.

A "boot" partition is where the Windows system32 folder is located.

A disk can be basic or dynamic. The partition style/scheme can be either MBR or Guid.

A dynamic partition offers additional capabilities, such as the ability to create volumes that span multiple disks (spanned and striped volumes) and the ability to create fault-tolerant volumes (mirrored and RAID-5 volumes). Regardless of whether the dynamic disks on a system use the MBR or GPT partition style, you can create up to 2,000 dynamic volumes on a system, although the recommended number of dynamic volumes is 32 or less.

You can create up to four partitions on a basic disk using the MBR partition scheme: either four primary partitions, or three primary and one extended. The extended partition can contain one or more logical drives.

A dynamic disk MBR layout is similar to the basic disk MBR layout, except that only one primary partition is allowed (referred to as the LDM partition), no extended partitioning is allowed, and there is a hidden partition at the end of the disk for the LDM database.

Windows Server 2003 SP1 and later can use a partition style known as the globally unique identifier (GUID) partition table (GPT) in addition to the MBR partition style. A Guid partition allows partitions larger than 2 TB, but you cannot install windows on a partition larger than that. GPT boot volumes are also not supported on many older versions of Windows. A basic disk using the GPT partition style can have up to 128 primary partitions, while dynamic disks will have a single LDM partition as with MBR partitioning. Because basic disks using GPT partitioning do not limit you to four partitions, you do not need to create extended partitions or logical drives.

http://windows.microsoft.com/en-US/windows7/What-are-system-partitions-and-boot-partitions

Basic and Dynamic Disks
http://msdn.microsoft.com/en-us/library/aa363785%28v=vs.85%29.aspx

Disk Concepts and Troubleshooting
http://technet.microsoft.com/en-us/library/cc977219.aspx

Partition styles
http://technet.microsoft.com/en-us/library/cc738081.aspx

link|improve this answer
feedback

System partitions contain the SystemRoot (in Windows parlance), i.e. the Windows folder, drivers, services, registry hives (and usually the page file). It usually is a primary partition. I think for Windows that's even a requirement.

Primary and extended partitions are a concept from MBR disks as opposed to GPT disks. There can be only four primary partitions and extended partitions only end up together within some primary partition that provides the space but does not have its own file system or so (it just provides the primary partition slot in the partition table).

As for dynamic partitions I'm not certain. I know the term of a dynamic disk which is a Windows term, but limited to a partition I haven't come across it, sorry.

link|improve this answer
@JdeBP: in most cases they are identical, though, are they not? And the question was not about boot vs. system partition but "system, dynamic, primary partition". The first system where I have seen the installer actively attempt to have them separated was Windows 7. – STATUS_ACCESS_DENIED Apr 3 '11 at 2:55
The question was indeed about system partitions, and your answer proceeded to talk about boot partitions, erroneously stating that they were system partitions. This mechanism is not new to Windows 7. It has been around for over a decade. – JdeBP Apr 11 '11 at 15:40
@JdeBP: could you please provide sources to that last statement ;) – STATUS_ACCESS_DENIED Apr 11 '11 at 19:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.