centOS7系统盘扩容

使用centos7.4.1708.iso安装的virtualbox虚拟机,设置的硬盘空间是1T,安装完成之后,df -h 看到

系统文件 容量 挂载点
/dev/mapper/centos-root 50G /
/dev/mapper/centos-home 969G /home

这样会导致系统目录很快就用满,想要动态扩容,你可以这么做

cd  / #进入根目录,后面需要打包/home目录,所以一定不能在/home目录以及其子目录
tar cvf home.tar /home #打包/home目录
lvremove -f /dev/mapper/centos-home  #删除已有的home分区
lvextend -L +800G /dev/mapper/centos-root #对root分区扩容800G,这只是一项设置,并位实际生效,还有个前提"/" 需要留有1G的空间
xfs_growfs /dev/mapper/centos-root # 扩展root分区,使上述的设置生效。

lvcreate -L 168G -n/dev/mapper/centos-home #创建新的home分区
mkfs.xfs /dev/mapper/centos-home #格式化home 分区
tar xvf home.tar -C /  #还原原来的/home的内容。

你可能感兴趣的:(linux系统相关)