fdisk -l
命令查询磁盘容量情况如下图:
使用fdisk /dev/sda命令来对磁盘进行分区,
命令(输入m获取帮助)可输入d 删除指定分区
当输入完 wq 出现:
WARNING: Re-reading the partition table failed with error 16: 设备或资源忙. The kernel still uses the old table. The new table will be used at the next reboot or after you run partprobe(8) or kpartx(8) 正在同步磁盘。报错时,输入此命令:partprobe /dev/sda (没有出现上面的报错 则跳过这一步)
将分出来的sda4分区创建为物理卷 :pvcreate /dev/sda4
为卷组centos添加新的物理卷sda4来增大容量
sudo vgdisplay
vgextend centos /dev/sda4
扩展逻辑卷的大小:lvextend -L +100G /dev/mapper/centos-root (100G 根据实际大小来填写)
重载逻辑卷,使分配结果生效:resize2fs /dev/mapper/centos- root (如果出现下图的错误,则输入图片中得命令)
使用 mount |grep root 检查 /dev/mapper/centos- root 文件系统,发现是xfs,使用命令如下;
xfs的文件系统重新定义大小用如下命令:xfs_growfs /dev/mapper/centos-root
标签:mapper,CentOS,centos,dev,磁盘空间,sda4,磁盘,root From: https://www.cnblogs.com/fanguoan/p/18289443