centos7 修改home和root分区大小

原创 淹不死的狗  2020-04-30 16:36:34  阅读 480 次 评论 0 条
摘要:

解决步骤:1 输入 df -h 命令查看硬盘情况df -h2卸载home分区umount /home如提示失败则用下面的命令终止/home 分区下的进程fuser -m -v -i -k /home3删除home的lvlvremove /dev/mapper/centos-home4扩展root分区的大小(根据你实际情况看你之前的home有多大,然后需要切割多大的home到根)lvextend -L&nbs

解决步骤:

1 输入 df -h 命令查看硬盘情况

df -h

centos7 修改home和root分区大小 操作系统 第1张

2卸载home分区

umount /home

如提示失败则用下面的命令终止/home 分区下的进程

fuser -m -v -i -k /home

3删除home的lv

lvremove /dev/mapper/centos-home

centos7 修改home和root分区大小 操作系统 第2张

4扩展root分区的大小(根据你实际情况看你之前的home有多大,然后需要切割多大的home到根)

lvextend -L +390G /dev/mapper/centos-root

进行 xfs_growfs

xfs_growfs /dev/centos/root


      xfs_growfs /dev/mapper/cl-root (失效的话)请使用命令:xfs_growfs /

centos7 修改home和root分区大小 操作系统 第3张

接下来重建home的分区,

查看 Free  PE / Size(大小根据vgdisplay的Free  PE / Size来确定)

vgdisplay

centos7 修改home和root分区大小 操作系统 第4张

创建home的lv

lvcreate -L 2.1GB -n home centos

建文件系统

mkfs.xfs /dev/centos/home

centos7 修改home和root分区大小 操作系统 第5张


挂载

mount /dev/mapper/centos-home
xfs_growfs /dev/mapper/centos-root

centos7 修改home和root分区大小 操作系统 第6张

最后再次用 df -h确认下

centos7 修改home和root分区大小 操作系统 第7张

重启 

 reboot


完成收工

本文地址:https://tugouli.exiu.org/3539.html
版权声明:本文为原创文章,版权归 淹不死的狗 所有,欢迎分享本文,转载请保留出处!

发表评论


表情

还没有留言,还不快点抢沙发?