标签:func 逻辑 linu 名称 href 设置 空间 ber ken
最近使用虚拟机的方式弄了个centos8的虚拟机,体验最新centos系统,分配了127g的空间,由于实际需要,发现home空间有好几十g的空间,而我都是使用root用户,无需home空间,因此找到在centos8中把home空间调整到root的方法,这里跟网上找到的centos7是有差别的。
步骤:
首先登陆ssh,使用df -lh查看空间使用情况
df -lh
root已经不够了,而vps也就自己一个人用,根本不需要用到home,home设置1个g就够了,其余的都给root,这样就可以给root多出来73个g的空间。 这因为一开始没有截图,所以看到的是后面的1g大小,一开始home是74g大小的。 备份home文件到/tmp目录
tar cvf /tmp/home.tar /home
# zip -r /tmp/home.zip /home
fuser -km /home/
umount /home
解除home目录的占用,卸载home目录
这一步centos8有很大不同,因为centos7中目录是/dev/mapper/centos-home,而在centos8中为 /dev/mapper/cl-home,因此注意卸载设备名称
lvremove /dev/mapper/cl-home
扩展root空间lv
lvextend -L +73G /dev/mapper/cl-root
这一步是真正增加root空间,centos7和centos8具有非常大的差别,centos7中是使用xfs_growfs /dev/mapper/centos-root,按逻辑centos8就应该是 xfs_growfs /dev/mapper/cl-root,但是结果就是
xfs_growfs /dev/mapper/cl-root
经过摸索发现应该直接使用/就可以了
xfs_growfs /
创建1g空间的home
lvcreate -L 1G -n home cl
文件系统类型设置
mkfs.xfs /dev/cl/home
挂载到home目录
mount /dev/cl/home /home
恢复home目录下文件
mv /tmp/home.tar /home
cd /home
tar xvf home.tar
mv home/* .
rm -rf home*
查看各分区大小
df -lh
本文主要介绍了在centos8系统下调整各分区大小,这里就是/home分区和/root分区,介绍在centos7和centos8下参数差异。熟悉linux系统下的文件系统的分区调整。对于刚装系统分区不合适需要调整centos各分区大小的用户起到指导作用
原文链接:https://www.bobobk.com/745.html
标签:func 逻辑 linu 名称 href 设置 空间 ber ken
原文地址:https://www.cnblogs.com/yc-shen/p/12913083.html