逻辑卷管理
Posted 小学生^.^
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了逻辑卷管理相关的知识,希望对你有一定的参考价值。
使用fdisk -cu /dev/vdb
Hex 代码(输入 L 列出所有代码):8e
已将分区“Linux”的类型更改为“Linux LVM”
[[email protected] ~]# cat /proc/partitions |grep vd //查看当前所挂载的磁盘
252 0 20971520 vda
252 1 512000 vda1
252 2 20458496 vda2
252 16 2097152 vdb
252 17 2096128 vdb1
252 32 5242880 vdc
252 33 5241856 vdc1
[[email protected] ~]# pvcreate /dev/vdb1 /dev/vdc1 //把两个磁盘弄成一个物理卷
Physical volume "/dev/vdb1" successfully created
Physical volume "/dev/vdc1" successfully created
[[email protected] ~]# vgcreate vg_test /dev/vdb1 /dev/vdc1 //把两个物理卷弄成一个卷组
Volume group "vg_test" successfully created
[[email protected] ~]# lvcreate -n lv_test -L 4G vg_test //把物理卷弄成逻辑卷
Logical volume "lv_test" created.
[[email protected] ~]# mkfs.ext4 /dev/vg_test/lv_test //格式化
[[email protected] test]# dd if=/dev/zero of=test.db bs=3M count=1000 //创建文件
[[email protected] test]# df -h |grep lv_test
/dev/mapper/vg_test-lv_test 3.9G 3.0G 667M 82% /test //查看挂载的lv_test
以上是关于逻辑卷管理的主要内容,如果未能解决你的问题,请参考以下文章