READ Free Dumps For LPI- 117-201
Question ID 21472 | You decide to use the logical volume manager (LVM) to manage four 4GB disk drives. After creating the
volume group, how would you create a 10GB logical volume called big-app?
|
Option A | vgcreate -p 10g -n /dev/vg01/big-app
|
Option B | vgcreate -l 2560 /dev/vg01/big-app
|
Option C | mklvm -v 10240 -n /dev/vg01/big-app
|
Option D | lvcreate -v 10240 /dev/vg01/big-app
|
Option E | lvcreate -l 2560 vg01 -n big-app
|
Correct Answer | E |
Explanation Explanation: From the man pages: lvcreate - create a logical volume in an existing volume group -l, --extents LogicalExtentsNumber[%{VG|PVS| FREE}] Gives the number of logical extents to allocate for the new logical volume. This can also be expressed as a percentage of the total space in the Volume Group with the suffix %VG, of the remaining free space in the Volume Group with the suffix %FREE, or of the remaining free space for the specified PhysicalVolume(s) with the suffix %PVS -n, --name LogicalVolumeName The name for the new logical volume. Without this option a default names of "lvol#" will be generated where # is the LVM internal number of the logical volume.
Question ID 21473 | What is the purpose of vgextend?
|
Option A | Extend a volume group's footprint on disk
|
Option B | Add physical volumes to a volume group
|
Option C | Increase the number of days between scheduled error checking
|
Option D | Create a volume group which uses all available space on disk
|
Correct Answer | B |
Explanation Explanation: From the man pages: vgextend - add physical volumes to a volume group