F.6 Partition Operations Mode

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:

F.6.1 Using the ZENworks Imaging Engine Menu to Partition

  1. Enter img to display the ZENworks Imaging Engine menu, then click Partitioning.

  2. Click Modify partitions to open the Partition Wizard.

  3. Select a partition.

  4. 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.

  5. When finished, click Done.

For more information, see the table in Section F.6.2, Using the Imaging Maintenance Mode Prompt to Partition.

F.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:

Command Details

Table F-12 Partition Mode Commands and Parameters

Operation

Action

-pc partition_number type [size] [cluster=clusterSize]

Creates a new partition, where:

  • partition_number is the number of the partition slot (as displayed by img dump) in which to create the partition

  • type is a keyword, a partition name or a numerical value for the partition type

    The valid keywords for the partition name are fat12, fat16, fat32, fat32x, ntfs, ext2, reiser, linuxswap, and extended. Ensure to specify the keywords in lowercase.

    The numeric value for the partition type can be 0x0C (hexadecimal) or 11 (decimal).

    If you are creating an extended partition, you can create a logical drive inside of the extended partition. (See the next table for an example.)

  • size is a valid size for the partition type.

    You must specify the size in MB or as a percentage of the total capacity of the drive. If you give a percentage, include the % symbol; otherwise, the value is considered the size in MB.

    If you omit this parameter, the largest valid size for the partition type is used, given the available unpartitioned space on the drive.

  • clusterSize is size appropriate to the partition type and partition size.

    You must specify the size in MB or as a percentage of the total capacity of the drive. If you give a percentage, include the % symbol; otherwise, the value is considered the size in MB.

    If you omit this parameter, the imaging engine uses a reasonable cluster size for the specified partition type and size.

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.

-pd partition_number

Deletes the partition from slot number partition_number. Use img dump to get the slot number.

-pd -all

Deletes all non-protected partitions.

-pa partition_number

Activates (make bootable) the partition in slot number partition_number. Use img dump to get the slot number.

Examples

Table F-13 Partition Mode Examples

Example

Explanation

  • img -pc 1 -type=ext2 or img -pc1 -type=ext2
  • img -pc 1 -type=ext2 -size=1000 or img -pc1 -type=ext2 -size=1000

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.