Skip to content

Commit 35f3c39

Browse files
Revise installation instructions for Rust on GCP Arm64
Updated terminology for clarity and consistency regarding the GCP SUSE VM architecture.
1 parent 8ca3cda commit 35f3c39

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

  • content/learning-paths/servers-and-cloud-computing/rust-on-gcp

content/learning-paths/servers-and-cloud-computing/rust-on-gcp/installation.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
---
23
title: Install Rust
34
weight: 4
@@ -6,11 +7,11 @@ weight: 4
67
layout: learningpathall
78
---
89

9-
## Install Rust
10+
## Overview
1011

11-
This section explains how to install and configure Rust on a GCP SUSE aarch64 VM, preparing your environment for building and benchmarking Rust applications.
12+
This section explains how to install and configure Rust on your GCP SUSE Arm64 VM, preparing your environment for building and benchmarking Rust applications.
1213

13-
### Update your system
14+
## Update your system
1415

1516
Update the system and install essential build tools required for compiling Rust programs:
1617

@@ -22,7 +23,7 @@ sudo zypper install -y curl gcc make
2223

2324
This ensures your system has the latest packages and the necessary compilation tools.
2425

25-
### Install Rust using rustup
26+
## Install Rust using rustup
2627

2728
Rust provides an official installer script via `rustup` that handles the setup automatically:
2829

@@ -32,7 +33,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
3233

3334
When prompted, select option 1 for the default installation. This installs the latest stable version of Rust along with Cargo, Rust's package manager and build system.
3435

35-
### Configure your environment
36+
## Configure your environment
3637

3738
Activate Rust's environment variables for your current shell session:
3839

@@ -42,7 +43,7 @@ source $HOME/.cargo/env
4243

4344
This command adds the Rust toolchain to your PATH, making the `rustc` compiler and `cargo` commands available.
4445

45-
### Verify the installation
46+
## Verify the installation
4647

4748
Confirm that Rust and Cargo installed successfully by checking their versions:
4849

@@ -58,4 +59,4 @@ rustc 1.91.0 (f8297e351 2025-10-28)
5859
cargo 1.91.0 (ea2d97820 2025-10-10)
5960
```
6061

61-
Your Rust installation is now complete and ready for development on the aarch64 platform.
62+
Your Rust installation is now complete and ready for development on your Arm64 instance.

0 commit comments

Comments
 (0)