2026/1/9 18:23:17
网站建设
项目流程
找公司做网站注意什么,亚马逊网络营销方式,没网站怎么做app,营销到底是什么需求#xff1a;虚拟机系统盘centos-root只有50GB#xff0c;当前使用率达到93%#xff0c;需扩容[rootlocalhost~]# fdisk -l #检查当前磁盘信息[rootlocalhost~]# vgs #检查当前卷组信息#xff0c;确认卷组名称为 centos#xff0…需求虚拟机系统盘centos-root只有50GB当前使用率达到93%需扩容[rootlocalhost~]# fdisk -l #检查当前磁盘信息[rootlocalhost~]# vgs #检查当前卷组信息确认卷组名称为centos通常如此[rootlocalhost~]# pvcreate /dev/sdb #创建物理卷PV[rootlocalhost~]#vgextend centos /dev/sdb #将物理卷加入卷组centos4.扩展逻辑卷centos-root指定大小如全部可用空间[rootlocalhost~]#lvextend-r-l100%FREE /dev/mapper/centos-root或使用具体大小如添加全部536GB[rootlocalhost~]#lvextend-r-L536G /dev/mapper/centos-root-r参数表示同时扩展文件系统适用于xfs或ext45.如果未使用-r参数需手动扩展文件系统[rootlocalhost~]#df-Th|grepcentos-root #查看文件系统类型[rootlocalhost~]#xfs_growfs /dev/mapper/centos-root #扩展XFS文件系统[rootlocalhost~]# resize2fs /dev/mapper/centos-root #扩展ext4文件系统6.验证扩展结果[rootlocalhost~]#df-h|grepcentos-root能看到/dev/mapper/centos-root的可用空间已增加500G