Google 云计算 "gcutil" 已弃用

Google Cloud Compute "gcutil" deprecated

我是 Google 云计算的新手,我不是开发人员或编码人员。但我一直在逐步遵循信息指南。 http://www.filiwiese.com/running-screaming-frog-on-google-cloud/

不幸的是,截至今天 "gcutil" 已弃用,我不知道如何按照说明进行操作。

我尝试了解 Google 的信息,但没有任何乐趣。

我希望有人能向我解释如何进行。

谢谢

gcutil 工具已被弃用,取而代之的是 gcloud,Google Cloud SDK 的一部分。

有一个guide to translating gcutil commands to gcloud commands,例如:

Create an instance:

  • gcutil addinstance INSTANCE
  • gcloud compute instances create INSTANCE

Delete an instance:

  • gcutil deleteinstance INSTANCE
  • gcloud compute instances delete INSTANCE \ [--keep-disks {boot,all,none}]

文档中列出了其他命令。