问题
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/
Unfortunately as of today "gcutil" has deprecated and I'm at a loss how to follow the instructions.
I tried understanding Googles info but no joy.
I'm hoping that someone can explain to me how to proceed.
Thanks
回答1:
The gcutil
tool has been deprecated in favor of gcloud
, part of Google Cloud SDK.
There's a guide to translating gcutil commands to gcloud commands, e.g.:
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}]
Other commands are listed in the document.
来源:https://stackoverflow.com/questions/31304351/google-cloud-compute-gcutil-deprecated