【发布时间】:2014-05-21 22:24:41
【问题描述】:
我是 Google Cloud Compute Engine 的新手,正在阅读他们的开发者文档的自定义镜像部分,然后发现他们允许自定义 Debian 和 CentOS 镜像。所以我想知道是否允许使用同样基于 Debian 的 Ubuntu。提前致谢!
【问题讨论】:
标签: cloud google-compute-engine
我是 Google Cloud Compute Engine 的新手,正在阅读他们的开发者文档的自定义镜像部分,然后发现他们允许自定义 Debian 和 CentOS 镜像。所以我想知道是否允许使用同样基于 Debian 的 Ubuntu。提前致谢!
【问题讨论】:
标签: cloud google-compute-engine
如果你愿意投入工作,你可以build an image from scratch使用任何你喜欢的linux发行版。
【讨论】:
是的,它支持 Ubuntu 映像,获取列表:
$ gcloud compute images list
NAME PROJECT FAMILY
...
ubuntu-1204-precise-v20160801 ubuntu-os-cloud ubuntu-1204-lts
ubuntu-1404-trusty-v20160627 ubuntu-os-cloud ubuntu-1404-lts
ubuntu-1604-xenial-v20160721 ubuntu-os-cloud ubuntu-1604-lts
...
【讨论】:
当前可用的图片列表是:
projects/centos-cloud/global/images/centos-6-v20140408
projects/debian-cloud/global/images/backports-debian-7-wheezy-v20140408
projects/debian-cloud/global/images/debian-7-wheezy-v20140408
projects/rhel-cloud/global/images/rhel-6-v20140408
projects/suse-cloud/global/images/sles-11-sp3-v20140306
没有可用的 Ubuntu 特定映像。
如果您有gcutil,则可以使用gcutil listimages 命令查看此列表。
【讨论】: