当低版本OS 安装growpart 工具失败时,可以使用parted 工具来分区,仅适用于数据盘 (阿里云系统盘都是MBR分区)且不适用于EXT3
umount 分区
要停止数据盘相关的服务和进程
扩展分区大小
parted /dev/vd[b-z]
输入resizepart 1 100% #扩容对应磁盘的第一个分区,将磁盘所有可用空间分配给第一个分区
(parted) help resizepart
resizepart NUMBER END
NUMBER is the partition number used by Linux. On MS-DOS disk labels, the primary partitions number from 1 to 4, logical partitions from 5 onwards.
END is disk location, such as 4GB or 10%. Negative value counts from the end of the disk. For example, -1s specifies exactly the last sector.
扩展文件系统
如果是EXT4文件系统 使用resize2fs /dev/vd<设备编号><分区编号>
如果是XFS 先挂载然后执行 xfs_growfs <挂载点>