1. PV Create
2. VG Create
3. LV Create<lv 생성시 옵션을 통해서 만든다.>
4. Format
lvcreate -i2 -L 800M -n lv_vg2_1 vg2
i2중 i는 Stripe 옵션이며 숫자 2는 vg에 포함되어있는 PV 수량을 쓰면된다.
예를 들어 VG구성 PV가 10이라면 i10이 좋을 것이다
하지만 이것은 내 생각이며 PV가 10개라도 5개의 pv에서만 Stripe 할거라면 i5로 해도 된다.
확인 방법:
[root@localhost ~]# lvs -v --segments
Finding all logical volumes
LV VG Attr Start SSize #Str Type Stripe Chunk
lv_root VolGroup -wi-ao---- 0 17.51g 1 linear 0 0
lv_swap VolGroup -wi-ao---- 0 2.00g 1 linear 0 0
lv_vg1_1 vg1 -wi-a----- 0 800.00m 1 linear 0 0
lv_vg1_2 vg1 -wi-a----- 0 800.00m 1 linear 0 0
lv_vg2_1 vg2 -wi-a----- 0 800.00m 2 striped 64.00k 0
lv_vg2_2 vg2 -wi-a----- 0 800.00m 2 striped 64.00k 0
[root@localhost ~]#
#man lvcreate
-i, --stripes Stripes
Gives the number of stripes. This is equal to the number of physical volumes to scatter the logical volume. When creating a RAID 4/5/6 logical volume, the
extra devices which are necessary for parity are internally accounted for. Specifying -i3 would use 3 devices for striped logical volumes, 4 devices for
RAID 4/5, and 5 devices for RAID 6.
'[IT] Linux > Volume' 카테고리의 다른 글
LV Size 확장 및 축소 (0) | 2015.05.07 |
---|---|
LVM PV, VG, LV 생성 (0) | 2015.05.07 |
super block (0) | 2015.05.07 |