Google Cloud Compute "gcutil" deprecated -


i'm new google cloud compute , i'm no developer or coder. i've been following information step step guide. http://www.filiwiese.com/running-screaming-frog-on-google-cloud/

unfortunately of today "gcutil" has deprecated , i'm @ loss how follow instructions.

i tried understanding googles info no joy.

i'm hoping can explain me how proceed.

thanks

the gcutil tool has been deprecated in favor of gcloud, part of google cloud sdk.

there's guide translating gcutil commands gcloud commands, e.g.:

create instance:

  • gcutil addinstance instance
  • gcloud compute instances create instance

delete instance:

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

other commands listed in document.


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -

Why does a .NET 4.0 program produce a system.unauthorizedAccess error on a Windows Server 2012 machine with .NET 4.5 installed? -