2024年11月Linux如何创建使用LVM(2)

发布时间:

  ⑴[rootstation ~]# vgs

  ⑵VG #PV #LV #SN Attr VSize VFree

  ⑶myvg wz--n- .g .g

  ⑷创建逻辑卷,lvcreate。

  ⑸[rootstation ~]# lvcreate -L G -n test myvg

  ⑹Logical volume “test” created

  ⑺-L:空间大小。

  ⑻-n:逻辑卷名称。

  ⑼[rootstation ~]# lvdisplay /dev/myvg/test

  ⑽--- Logical volume ---

  ⑾LV Path /dev/myvg/test

  ⑿LV Name test

  ⒀VG Name myvg

  ⒁LV UUID wYYUF-fo-jzu-mtTL-p-qvfC-QfFy

  ⒂LV Write Aess read/write

  ⒃LV Creation host, time station.magelinux., -- :: +

  ⒄LV Status available

  ⒅LV Size . GiB

  ⒆Current LE

  ⒇Segments

  ⒈Allocation inherit

  ⒉Read ahead sectors auto

  ⒊- currently set to

  ⒋Block device :

  ⒌挂载使用创建好的逻辑卷。

  ⒍mkefs -t ext /dev/myvg/test 格式化。

  ⒎mount /dev/myvg/test /mnt/挂载使用。

  ⒏假如有一天逻辑卷不够用了。怎么从卷组扩展呢?如下分析。

  ⒐逻辑卷扩展的大致步骤:

  ⒑,先确定扩展的大小,并确保所属的卷组有足够的剩余空间。

  ⒒我现在要扩展G,本身是G的大小。命令如下:

  ⒓[rootstation ~]# lvextend -L +G /dev/myvg/test

  ⒔Extending logical volume test to . GiB

  ⒕Logical volume test suessfully resized

  ⒖,扩展物理边界。物理边界指的是本身的物理边缘大小。

  ⒗[rootstation ~]# lvdisplay /dev/myvg/test

  ⒘--- Logical volume ---

  ⒙LV Path /dev/myvg/test

  ⒚LV Name test

  ⒛VG Name myvg

  ①LV UUID wYYUF-fo-jzu-mtTL-p-qvfC-QfFy

  ②LV Write Aess read/write

  ③LV Creation host, time station.magelinux., -- :: +

  ④LV Status available

  ⑤LV Size . GiB

  ⑥Current LE

  ⑦Segments

  ⑧Allocation inherit

  ⑨Read ahead sectors auto

  ⑩- currently set to

  ⅠBlock device :