» Linux » Examen sur Linux » Examen 201 : Advanced Administration » Section 3 » Question 1/20
1.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?

vgcreate -p 10g -n /deb/vg01/big-app
vgcreate -l 2560 /dev/vg01/big-app
mklvm -v 10240 -n /dev/vg01/big-app
lvcreate -v 10240 /dev/vg01/big-app
lvcreate -l 2560 vg01 -n big-app

Explanation

Question 2 »