Centos7一键合并 /home 目录到 / 根目录

一键脚本

yum install -y wget && wget https://lantinglou.com/home.sh --no-check-certificate && chmod +x home.sh && ./home.sh

源文件

#!/bin/bash
# 卸载 /home 分区
umount /dev/mapper/centos_centos-home

# 删除 /home 逻辑卷
yes | lvremove /dev/mapper/centos_centos-home

# 扩展 / 根目录逻辑卷
lvextend -l +100%FREE -r /dev/mapper/centos_centos-root

# 备份 /etc/fstab 文件
cp /etc/fstab /etc/fstab.backup

# 更新 /etc/fstab 文件,移除或注释掉 /home 分区的条目
sed -i '/\/home/d' /etc/fstab

 

赞 (0)

评论 0

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址