Skip to content

Latest commit

 

History

History

GSP001_Creating-a-Virtual-Machine

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

GSP001 —— Creating a Virtual Machine

Table of Contents (🔎 Click to expand/collapse)

Overview

Compute Engine lets you create virtual machines that run different operating systems, including multiple flavors of Linux (Debian, Ubuntu, Suse, Red Hat, CoreOS) and Windows Server, on Google infrastructure. You can run thousands of virtual CPUs on a system that is designed to be fast and to offer strong consistency of performance.

Create Instance (Graphical User Interface)

  1. Click Navigation Menu > Compute Engine > VM Instances.
  2. Click CREATE INSTANCE.
  3. Configure the instance parameters.
  4. Click CREATE

Create Instance (Command Line Interface)

$ gcloud compute instances create <NAME> \
    --zone=<ZONE> \
    --machine-type=<MACHINE_TYPE> \

References