LVM : Configure Striped Volume2024/12/27 |
Configure Striped Volumes. |
|
[1] | For example, create a Striped Volume with Physical Volume [/dev/sdb1] and [/dev/sdc1]. |
# create volume group [vg_striped] with [/dev/sdb1] and [/dev/sdc1] [root@dlp ~]# vgcreate vg_striped /dev/sdb1 /dev/sdc1 Volume group "vg_striped" successfully created # create striped volume [root@dlp ~]# lvcreate -L 50G -i2 -I 64 -n lv_striped vg_striped Logical volume "lv_striped" created.[root@dlp ~]# lvdisplay /dev/vg_striped/lv_striped --- Logical volume --- LV Path /dev/vg_striped/lv_striped LV Name lv_striped VG Name vg_striped LV UUID fLA9ZG-7XAk-8rJd-HWDO-buOX-z82x-uXVkIX LV Write Access read/write LV Creation host, time dlp.srv.world, 2024-12-27 10:14:32 +0900 LV Status available # open 0 LV Size 50.00 GiB Current LE 12800 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 8192 Block device 253:3[root@dlp ~]# lvs -a -o vg_name,name,devices,size VG LV Devices LSize cs home /dev/sda3(2014) <23.34g cs root /dev/sda3(7988) 47.79g cs swap /dev/sda3(0) <7.87g vg_striped lv_striped /dev/sdb1(0),/dev/vdc1(0) 50.00g |
Sponsored Link |
|