Use the partition mode command to activate (make bootable), add, or delete a partition on the device.
You can activate, add, or delete a partition by using either ZENworks Imaging Engine menu or the imaging maintenance mode prompt.
For more information, review the following sections:
Enter img to display the ZENworks Imaging Engine menu, then click Partitioning.
Click Modify partitions to open the Partition Wizard.
Select a partition.
Select an option:
Active: Select a partition that you want to activate (make bootable), then click Active.
Add: Opens the Create New Partition window. Click a partition type, partition size, and cluster size, then click OK.
Delete: Select a partition, then click Delete.
When finished, click Done.
For more information, see the table in Section E.6.2, Using the Imaging Maintenance Mode Prompt to Partition.
You can use the following partition mode commands at the imaging maintenance mode prompt:
img -pa partition_number
img -pc partition_number -type=type [-size=size] [-cluster=cluster_size]
img -pd partition_number
img -pd -all
For more information, see:
The following table lists the details of the commands used for creating and deleting an image partition:
Operation |
Action |
---|---|
-pc partition_number type [size] [cluster=clusterSize] [-A] [-guid] |
Creates a new partition, where:
|
|
The new partition is recognizable by other operating systems, but must be formatted or have a base image restored to it before you can store files in it. If you use the legacy NTFS driver to create a partition on a device and no base image is restored in the partition, run the # mkntfs -fc 4096/dev/sdXn command to make the partition usable. In this command, sdX is the device node and n stands for the partition number in the device. |
-pd partition_number |
Deletes the partition from slot number partition_number. Use img dump to get the slot number. NOTE:If you are deleting an Extended partition, ensure that you delete it sequentially from the first partition. |
-pd -all |
Deletes all non-protected partitions. |
-pa partition_number |
On a MBR disk: Activates (make bootable) the partition in slot number partition_number. Use the img dump command to get the slot number. |
Table E-14 Partition Mode Examples
Example |
Explanation |
---|---|
|
Creates the ext2 partition in slot 1 using all of the available unpartitioned space on the drive. |
img -pc 5 -type=reiser -size=5671 |
Creates a Reiser partition in slot 5 using 5,671 MB on the drive. |
img ‑pd 3 or img -pd3 |
Deletes the partition from slot 3. |
img -pc 2 -type=extended -size=2500 img -pc 2 -type=reiser -size=500 |
Creates an extended partition with a 2500 ext2 logical drive and a 500 MB Reiser logical drive. |
img -pa 1 or img -pa1 |
Creates a active partition in slot 1. |
You can use the following partition commands at the WinPE maintenance mode prompt:
img -pc partition_number -type=type [-size=size] [-cluster=cluster_size]
img -pc partition_number -type=type [-size=size] [-cluster=cluster_size]-guid=guid
img -pa partition_number
img -pd partition_number
img -pd -all
For more information, see:
Operation |
Action |
---|---|
-pc partition_number -type [-size] [-cluster=clusterSize] [-guid] |
Creates a new partition, where:
|
-pd partition_number |
Deletes the partition from slot number partition_number. Use img -p to get the slot number. |
-pd -all |
Deletes all non-protected partitions. |
-pa partition_number |
Activates (make bootable) the partition in the slot. Use img -p to get the slot number. |
Table E-15 Partition Mode Examples
Example |
Explanation |
---|---|
|
Creates the FAT32 partition in slot 1 of size 1024 MB on the MBR disk. |
|
Creates the NTFS partition in slot 1 of size 1024 MB on the GPT disk. |
img -pc 2 -type=ntfs |
Creates a NTFS partition in slot 2 using all the available unpartitioned space on the drive. |
img ‑pd 3 or img -pd3 |
Deletes the partition from slot 3. |
img -pc 2 -type=extended -size=2500 or img -pc 2 -type=ext -size=2500 img -pc 2 -type=ntfs -size=500 |
Creates an extended partition of size 2500 MB, and a 500 MB NTFS logical drive within the extended partition. |
img -pa 1 |
Activates the partition in slot 1. |