如何在GCE上的CentOS中调整xfs的大小?

时间:2018-09-26 14:37:48

标签: linux centos google-compute-engine xfs

我在GCE(Google Compute Engine)上有一个带有CentOS的虚拟机。 我在GCE中添加了10GB的磁盘空间,系统可以看到该空间。我尝试使用xfs_growfs向分区添加10GB,但是没有用。 什么地方出了错? Here's an image of the console where I tried to make the change.

1 个答案:

答案 0 :(得分:1)

您必须先运行growpart才能扩展XFS所在的分区,如下所示:

sudo growpart /dev/[DEVICE_ID] [PARTITION_NUMBER]
sudo xfs_growfs /dev/[DEVICE_ID][PARTITION_NUMBER]

这在Google的官方文档here中有很好的记录。