天天看点

Linux-教你快速磁盘扩容

1、添加一块硬盘

2、查看分区情况

fdisk -l           

3、创建新分区

fdisk /dev/sdb 回车

m 回车

n 回车

p 回车

w 回车           

4、再次查看分区

fdisk /dev/sdb 回车           
Linux-教你快速磁盘扩容
t 回车

3 回车

L 回车

8e 回车

w 回车           

5、再看一次分区

Linux-教你快速磁盘扩容

6、新分区格式化(ext3/ext4)

注意:这里是sdb1,不是sdb
mkfs.ext3 /dev/sdb1           

7、分区转化为物理卷

pvcreate /dev/sdb1           
Linux-教你快速磁盘扩容

8、查看物理卷信息

pvdisplay           
Linux-教你快速磁盘扩容

9、查看VG信息

vgdisplay           
Linux-教你快速磁盘扩容

10、将刚才初始化的物理卷添加到主分区的物理卷

cl名字来源于上面命令查询结果,也可能是其他名字
vgextend cl /dev/sdb1
或者
vgextend centos /dev/sdb1           
Linux-教你快速磁盘扩容

11、查看VG信息

vgdisplay           
Linux-教你快速磁盘扩容

12、查看挂载的盘

df -h           

13、扩容/home分区

根据逻辑卷名不一样命令不同(具体还得看逻辑卷)
lvextend -L +50G /dev/mapper/cl-root
或者
lvresize -L +500M /dev/mapper/dev/mapper/centos-root           
Linux-教你快速磁盘扩容

14、挂载

路径(具体还得看逻辑卷)
xfs_growfs /dev/mapper/cl-root
或者
xfs_growfs /dev/mappercentos-root           
Linux-教你快速磁盘扩容

15、查看已挂载的盘

df -h           
Linux-教你快速磁盘扩容

继续阅读