美文网首页LINUX
linux 根目录扩容

linux 根目录扩容

作者: Shawway | 来源:发表于2017-06-06 16:58 被阅读0次

    因为是在虚拟机上做的实验,故以虚拟机作为模板介绍

    1、虚拟机增加容量,我增加了40G

    2、进centos 7系统,按Ctrl+alt+F5,进入命令符界面,为何不进入桌面模式,因为要修改home空间容量,所以直接命令符界面进入root模式

    3、输入fdisk- l 查看系统容量,注意root盘名称,我的是cl,然后输入df -h 查看各个根目录的占用空间容量

    4、对增加的分区进行分区操作 命令:fdisk /dev/sda

    5、对分区完毕的分区进行lvm格式转换,8e

    6、创建pv   pvcreate /dev/sda3

    7、查看当前卷组情况 vgdisplay    查看free pe /size 有无空间

    8、扩展逻辑卷(根目录"/"的挂载点)

    >lvextend -L +25G /dev/cl/root /dev/sda3

    >lvextend -L +15G /dev/cl/root/home /dev/sda3

    >/sbin/resize2fs /dev/cl/home

    9、系统重新识别

    >xfs_growfs /dev/cl/home

    >xfs_growfs /dev/cl/root

    相关文章

      网友评论

        本文标题:linux 根目录扩容

        本文链接:https://www.haomeiwen.com/subject/wfegfxtx.html