CentOS7根目录磁盘扩容(扩容新硬盘挂载)

CentOS7根目录磁盘扩容(/dev/mapper/centos-root 空间不足)  /*centos为计算机名


# 查看根分区大小
[root@cbs ~]# df -h       /* 从红色框中可见,已用36%,可用17G

# 查看磁盘编号
[root@cbs ~]# ls /dev/sd*

# 这里在vMware vCenter中新增一块硬盘(编辑->新增设备) 并且重启CentOS(重要:必须重启系统)后,再次查看磁盘
[root@cbs ~]# ls /dev/sd*     /* 此时可以看出多列出了一个 /dev/sdb  如下图红色框)

# 创建 pv
[root@cbs ~]# pvcreate /dev/sdb
     Physical volume "/dev/sdb" successfully created.

# 查看 vg组

[root@cbs ~]# vgs
VG #PV #LV #SN Attr VSize VFree
centos 1 2 0 wz--n- <29.00g 0   

# 扩展 vg
[root@cbs ~]# vgextend centos /dev/sdb  
Volume group "centos" successfully extended

# 扩展 lv
[root@cbs ~]# lvextend -L 200G /dev/mapper/centos-root       /* (路径:/dev/mapper/centos-root)对应第一张截图的红色选框

# 系统重新读取大小
[root@cbs ~]# xfs_growfs /dev/mapper/centos-root          /* (路径:/dev/mapper/centos-root)对应第一张截图的红色选框

# 查看扩容是否成功
[root@cbs ~]# df -h                  /* 从红色框中可见,已用5%,可用191G,可以与第一张红色框对比,即扩容200G成功

[root@cbs ~]# lsblk

[root@cbs ~]# vgs
VG #PV #LV #SN Attr VSize VFree
centos 2 2 0 wz--n- 228.99g <200.00g

posted @ 2021-07-27 16:17  金色毛毛  阅读(920)  评论(0编辑  收藏  举报