nerdexam
IBM

000-221 · Question #199

How will the following command change the datalv logical volume? chlv --e m datalv

The correct answer is C. The logical volume will have new logical partitions spread across as few disks as possible. The chlv -e m flag sets the inter-disk allocation policy to 'minimum', directing future logical partition allocations to use as few physical volumes as possible.

Storage Management

Question

How will the following command change the datalv logical volume? chlv --e m datalv

Options

  • AThe logical volume will be encrypted with the key in a file named "m".
  • BThe logical volume will be rebalanced across the maximum physical volumes immediately.
  • CThe logical volume will have new logical partitions spread across as few disks as possible.
  • DThe logical volume will be rebalanced across the minimum number of physical volumes immediately

How the community answered

(23 responses)
  • A
    13% (3)
  • B
    9% (2)
  • C
    74% (17)
  • D
    4% (1)

Why each option

The chlv -e m flag sets the inter-disk allocation policy to 'minimum', directing future logical partition allocations to use as few physical volumes as possible.

AThe logical volume will be encrypted with the key in a file named "m".

The -e flag sets the inter-disk allocation policy, not encryption; encryption on AIX logical volumes uses a different mechanism entirely.

BThe logical volume will be rebalanced across the maximum physical volumes immediately.

Spreading across the maximum number of physical volumes corresponds to the 'x' (maximum) policy, not 'm' (minimum), and chlv does not immediately rebalance existing partitions.

CThe logical volume will have new logical partitions spread across as few disks as possible.Correct

In AIX, the chlv -e flag controls the inter-disk allocation policy for a logical volume. The value 'm' specifies the minimum policy, which concentrates logical partition allocation onto as few physical volumes as possible. This policy applies to future allocations; it does not immediately reorganize existing partitions.

DThe logical volume will be rebalanced across the minimum number of physical volumes immediately

While 'minimum number of physical volumes' is technically correct for 'm', the word 'immediately' is incorrect because chlv -e only sets the policy for future allocations and does not rebalance existing logical partitions.

Concept tested: AIX chlv inter-disk allocation policy minimum flag

Source: https://www.ibm.com/docs/en/aix/7.3?topic=c-chlv-command

Topics

#chlv#logical volume#allocation policy#physical volumes

Community Discussion

No community discussion yet for this question.

Full 000-221 Practice