linux的LVM 具体配置过程
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-02
# mkdir /mnt/lvm [root@linux ~]# mount -t ext3 /dev/vbirdvg/vbirdlv /mnt/lvm [root@linux ~]# df 查看分区情况 [root@linux ~]# fdisk -l /dev/hdb 查看/dev/hdb的具体分区和使用情况 让原有的 LVM 磁盘加大的方法: resize2fs 1. 将欲处理的 LV 卸载; umount /mnt/lvm 2. 建立 PV; [root@linux ~]# fdisk /dev/hdb Command (m for help): t Partition number (1-4): 3 Hex code (type L to list codes): 8e Changed system type of partition 3 to 8e (Linux LVM) Command (m for help): w The partition table has been altered! [root@linux ~]# partprobe [root@linux ~]# pvcreate /dev/hdb3 3. 将建立的 PV 以 vgextend 增加到 VG 当中; [root@linux ~]# vgextend vbirdvg /dev/hdb3 4. 利用 lvextend 增加刚刚 VG 所增加的容量; lvextend -L 10G /dev/vbirdvg/vbirdlv 5. 利用 resize2fs 将 LV 的容量确实增加! [root@linux ~]# mount -t ext3 /dev/vbirdvg/vbirdlv /mnt/lvm [root@linux ~]# resize2fs [-f] [device] [size] [root@linux ~]# umount /mnt/lvm [root@linux ~]# resize2fs -f /dev/vbirdvg/vbirdlv [root@linux ~]# mount -t ext3 /dev/vbirdvg/vbirdlv /mnt/lvm 另外,如果你想要将 LVM 移除的话,那么就应该要: 本文出自 “wxfxn2000” 博客,谢绝转载! |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |