gpt4 book ai didi

cloud - 如何增加 Google Compute Engine 中根磁盘的大小?

转载 作者:行者123 更新时间:2023-12-03 07:52:48 28 4
gpt4 key购买 nike

GCE 中的根磁盘大小为 10 gigs。我如何增加这个?我在控制台或 gcutil 标志中找不到该选项。这可以在 AWS 中轻松完成。

最佳答案

自 2016 年 3 月 31 日起,您无需停止或重新启动 VM,无需拍摄快照,也无需将其还原到更大的磁盘,即可在线调整永久性磁盘 的大小。
blog post announcing the feature 包含详细信息,您可以通过控制台查看 the docs 以了解如何执行此操作:

Resize the persistent disk in the Google Cloud Platform Console:

  1. Go to the Compute Engine page.
  2. Click on "Disks" in the sidebar
  3. Click the name of the disk that you want to resize.
  4. At the top of the disk details page, click "Edit".
  5. In the "Size" field, enter the new size for your disk.
  6. At the bottom of the disk details page, click "Save" to apply your changes to the disk.
  7. After you resize the disk, you must resize the disk partitions so that the operating system can access the additional space.

或通过 CLI:
gcloud compute disks resize example-disk --size 250
然后,在 Debian/Ubuntu/等上。运行:
$ sudo apt install -y cloud-utils         # Debian jessie
$ sudo apt install -y cloud-guest-utils # Debian stretch, Ubuntu
$ sudo growpart /dev/sda 1
$ sudo resize2fs /dev/sda1
或者,对于 RedHat/Fedora/CentOS/等:
$ sudo dnf install -y cloud-utils-growpart
$ sudo growpart /dev/sda 1
$ sudo xfs_growfs -d / # CentOS 6 needs `resize2fs`
请注意, some operating systems 将在重新启动时自动调整分区大小,而无需您使用 fdiskresize2fsxfs_growfs 等工具执行任何手动步骤,因此只需调整磁盘大小并重新启动 VM 即可使更改生效。

关于cloud - 如何增加 Google Compute Engine 中根磁盘的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22381686/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com