CentOS Linux release 7.x LVM将/home目录合并到/根目录

查看硬盘情况

df -h

其中根目录/已用98%,现在需要对它进行扩容。另外看到/home目录400多G基本是空的,所以要把/home 合并到 /目录下。记住上面的/dev/mapper/cl-root (第2、4步使用到)及 /dev/mapper/cl-home (第3步使用到)

执行以下步骤:

1、卸载/home目录

umount /home/

2、释放/home的空间

lvremove /dev/mapper/cl-home

3、将释放出来的空间添加至系统根目录

lvextend -l +100%FREE /dev/mapper/cl-root

4、文件系统扩展

xfs_growfs /dev/mapper/cl-root

5、确认

df -h
This entry was posted in 服务器. Bookmark the permalink.

发表评论