Uly.me

cloud engineer

  • Home
  • About
  • Archives
Home/Archives for image

May 12, 2019

GCP Create Images

Here’s how to create a GCP Disk Image from a Boot Drive.

  • First, stop the instance.
  • If you can’t, stop the applications/database from writing to disks.
  • Run sudo sync .

Create From Disk

gcloud compute images create the-new-image-name \
   --source-disk the-source-boot-disk \
   --source-disk-zone us-central1-a \
   --family the-image-family \
   [--force]

gcloud compute images create the-new-image-name \ --source-disk the-source-boot-disk \ --source-disk-zone us-central1-a \ --family the-image-family \ [--force]

Create From Image

gcloud compute images create the-new-image-name \
  --source-image the-source-image \
  --source-image-project the-project-where-the-image-is-located \
  --family the-image-family

gcloud compute images create the-new-image-name \ --source-image the-source-image \ --source-image-project the-project-where-the-image-is-located \ --family the-image-family

Create From Snapshot

gcloud compute images create the-new-image-name \
  --source-snapshot the-source-snapshot

gcloud compute images create the-new-image-name \ --source-snapshot the-source-snapshot

For more info.

January 14, 2019

Etcher

Etcher allows you to safely and easily burn images to SD and USB drives. It has a simple interface, and and exclusively available on the Mac OS platform. Burning an image has never been easy. Just select an image (ISO), select a drive, and flash the image.

Etcher interface


  • Cloud
  • Linux
  • Git

Copyright © 2012–2021