centos 磁盘扩容

  1. 查看磁盘情况
fdisk -l
fdisk /dev/sda

n //添加新分区 
p //创建主分区 
3 //分区号3(1、2已经有了) 
//按回车 //起始扇区选择默认 
//回车默认 //为了不浪费空间  
t //更改分区格式 
8e //更改分区格式为LVM 
p //查看弄好的分区 (blocks为分区大小 单位为kb) 
w //保存分区并退出
  1. 分区建好了 但是需要重启才生效
reboot
  1. 转换分区为物理卷
pvcreat /dev/sda3

vgdisplay   //centos:vg name

//开始扩展 把/dev/sda3扩展到卷组rhel下

vgextend centos /dev/sda3 //centos为卷组名

vgdisplay  //注意Free PE

lvdisplay //这里的LV Path路径为/dev/centos/root

lvextend -l +51199 /dev/centos/root  //这里是上面Free PE

//centos6
resize2fs  /dev/centos/root

//centos7
xfs_growfs /dev/centos/root

你可能感兴趣的:(centos 磁盘扩容)