-1

I have an iso image for slackware 14.1 and i want to boot it on GCE. Can anyone please guide me in doing so. Thanks.

1 Answers1

2

Google Compute Engine is not ready to allow standard images, you need to install your iso image in a VM in your machine using VMWare, Qemu or Virtualbox. Then, modify the VM a bit following these steps.

After that, you can upload the image to Google Cloud Storage and finally add the image to your project using the command:

gcloud compute images create IMAGE_NAME --project PROJECT --source-uri gs://BUCKET_NAME/IMAGE_NAME.image.tar.gz

Once you have added the image you can create a new VM either using the Developers Console or the command-line.

Adrián
  • 2,876
  • 17
  • 22