Skip to content

Commit 61b1dd3

Browse files
updated synced with cassandra install
1 parent efbe035 commit 61b1dd3

File tree

1 file changed

+7
-4
lines changed
  • content/learning-paths/servers-and-cloud-computing/csp

1 file changed

+7
-4
lines changed

content/learning-paths/servers-and-cloud-computing/csp/google.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ To create a virtual machine based on the C4A instance type:
2727
![Create a Google Axion C4A Arm virtual machine in the Google Cloud Console with c4a-standard-4 selected alt-text#center](images/gcp-vm.png "Creating a Google Axion C4A Arm virtual machine in Google Cloud Console")
2828

2929

30-
- Under **OS and Storage**, select **Change**, then choose an Arm64-based OS image. For this Learning Path, use **SUSE Linux Enterprise Server** or **Ubuntu**. Click **Select**.
30+
- Under **OS and Storage**, select **Change**, then choose an Arm64-based OS image. For this Learning Path, use **SUSE Linux Enterprise Server** or **Ubuntu**.
31+
- If using use **SUSE Linux Enterprise Server**. Select "Pay As You Go" for the license type.
32+
- If using **Ubuntu**, under the **Version** tab, please scroll down and select the aarch64 version of **Ubuntu 22.04 LTS**.
33+
- Once appropriately selected, please Click **Select**.
3134
- Under **Networking**, enable **Allow HTTP traffic**.
3235
- Click **Create** to launch the instance.
3336
- Once created, you should see a "SSH" option to the right in your list of VM instances. Click on this to launch a SSH shell into your VM instance:
@@ -56,11 +59,11 @@ Install the `gcc` compiler:
5659
{{< tabpane code=true >}}
5760
{{< tab header="Ubuntu" language="bash">}}
5861
sudo apt update
59-
sudo apt install unzip -y
62+
sudo apt install -y build-essential
6063
{{< /tab >}}
6164
{{< tab header="SUSE Linux" language="bash">}}
6265
sudo zypper refresh
63-
sudo zypper install -y curl unzip
66+
sudo zypper install -y gcc
6467
{{< /tab >}}
6568
{{< /tabpane >}}
6669

@@ -90,4 +93,4 @@ hello world
9093

9194
Cloud infrastructure deployment is typically done via Infrastructure as code (IaC) automation tools. There are Cloud Service Provider specific tools like [Google Cloud Deployment Manager](https://cloud.google.com/deployment-manager/docs/).
9295

93-
There are also Cloud Service Provider agnostic tools like [Terraform](https://www.terraform.io/).There is a [deploying Arm VMs on (GCP) using Terraform learning path](/learning-paths/servers-and-cloud-computing/gcp) that should be reviewed next.
96+
There are also Cloud Service Provider agnostic tools like [Terraform](https://www.terraform.io/).There is a [deploying Arm VMs on (GCP) using Terraform learning path](/learning-paths/servers-and-cloud-computing/gcp) that should be reviewed next.

0 commit comments

Comments
 (0)