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.
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)- A13% (3)
- B9% (2)
- C74% (17)
- D4% (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.
The -e flag sets the inter-disk allocation policy, not encryption; encryption on AIX logical volumes uses a different mechanism entirely.
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.
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.
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
Community Discussion
No community discussion yet for this question.