问题描述
我是Google Cloud Compute的新手,也不是开发人员或编码人员.但是我一直在按照逐步指南进行操作. http://www.filiwiese.com/running-screaming-frog- on-google-cloud/
I'm new to Google Cloud Compute and I'm no developer or coder. But I've been following the information step by step guide. http://www.filiwiese.com/running-screaming-frog-on-google-cloud/
不幸的是,截止到今天,"gcutil"已被弃用,我无所适从如何遵循这些说明.
Unfortunately as of today "gcutil" has deprecated and I'm at a loss how to follow the instructions.
我试图了解Google的信息,但没有高兴.
I tried understanding Googles info but no joy.
我希望有人可以向我解释如何进行.
I'm hoping that someone can explain to me how to proceed.
谢谢
推荐答案
不推荐使用gcutil
工具,而推荐使用gcloud
(Google Cloud SDK的一部分).
The gcutil
tool has been deprecated in favor of gcloud
, part of Google Cloud SDK.
有指南,可将gcutil
命令转换为命令,例如:
-
gcutil addinstance INSTANCE
-
gcloud compute instances create INSTANCE
gcutil addinstance INSTANCE
gcloud compute instances create INSTANCE
删除实例:
-
gcutil deleteinstance INSTANCE
-
gcloud compute instances delete INSTANCE \ [--keep-disks {boot,all,none}]
gcutil deleteinstance INSTANCE
gcloud compute instances delete INSTANCE \ [--keep-disks {boot,all,none}]
文档中列出了其他命令.
Other commands are listed in the document.
这篇关于Google Cloud Compute"gcutil"不推荐使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!