Skip to content

Commit 78ea083

Browse files
_index.md changes
1 parent fdea263 commit 78ea083

File tree

8 files changed

+205
-1
lines changed

8 files changed

+205
-1
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
additional_search_terms:
3+
- cloud
4+
- deploy
5+
6+
7+
layout: installtoolsall
8+
minutes_to_complete: 15
9+
author_primary: Jason Andrews
10+
multi_install: false
11+
multitool_install_part: false
12+
official_docs: https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html
13+
test_images:
14+
- ubuntu:latest
15+
test_link: null
16+
test_maintenance: false
17+
test_status:
18+
- passed
19+
title: PMUv3_plugin
20+
tool_install: true
21+
weight: 1
22+
---
23+
24+
[AWS CLI](https://docs.aws.amazon.com/cli/index.html) is a cross-platform command-line tool that can be installed on development computers. The AWS Command Line Interface (AWS CLI) is a unified tool that provides a consistent interface for interacting with all parts of Amazon Web Services.
25+
26+
It is available for a variety of operating systems and Linux distributions, supports the Arm architecture and has multiple ways to install it.
27+
28+
## What should I do before installing AWS CLI?
29+
30+
This article provides quick solutions to install the latest version of AWS CLI, version 2, for Ubuntu on Arm.
31+
32+
Confirm you are using an Arm computer with 64-bit Linux by running:
33+
34+
```bash { target="ubuntu:latest" }
35+
uname -m
36+
```
37+
38+
The output should be:
39+
40+
```output
41+
aarch64
42+
```
43+
44+
If you see a different result, you are not using an Arm computer running 64-bit Linux.
45+
46+
## How do I download and install AWS CLI version 2?
47+
48+
The easiest way to install the latest version of the AWS CLI for Ubuntu on Arm is to download and run the installer from AWS.
49+
50+
Before starting, install `unzip`:
51+
52+
```bash { target="ubuntu:latest" }
53+
sudo apt update
54+
sudo apt install unzip -y
55+
```
56+
57+
Download the zip file with `curl`, extract the installer, and run it.
58+
59+
```bash { target="ubuntu:latest" }
60+
curl "https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip" -o "awscliv2.zip"
61+
unzip awscliv2.zip
62+
sudo ./aws/install
63+
```
64+
65+
Confirm the CLI version 2 is available by invoking the `aws` command to print the version.
66+
67+
```bash { target="ubuntu:latest" }
68+
aws --version
69+
```
70+
71+
Review [AWS CLI v2 is now generally available](https://aws.amazon.com/blogs/developer/aws-cli-v2-is-now-generally-available/) to review the new features in version 2.
72+
73+
You now have the latest version of the AWS CLI installed. Follow [this guide](/install-guides/aws_access_keys/) to generate and configure access keys needed to use the AWS CLI.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: PLACEHOLDER TITLE
3+
4+
minutes_to_complete: 10
5+
6+
who_is_this_for: PLACEHOLDER SENTENCE
7+
8+
learning_objectives:
9+
- PLACEHOLDER OBJECTIVE 1
10+
- PLACEHOLDER OBJECTIVE 2
11+
12+
prerequisites:
13+
- PLACEHOLDER PREREQ 1
14+
- PLACEHOLDER PREREQ 2
15+
16+
author_primary: PLACEHOLDER NAME
17+
18+
### Tags
19+
skilllevels: PLACEHOLDER SKILLLEVEL
20+
subjects: PLACEHOLDER SUBJECT
21+
armips:
22+
- PLACEHOLDER IP A
23+
- PLACEHOLDER IP B
24+
tools_software_languages:
25+
- PLACEHOLDER TOOL OR SOFTWARE C
26+
- PLACEHOLDER TOOL OR SOFTWARE D
27+
operatingsystems:
28+
- PLACEHOLDER OS G
29+
30+
31+
### FIXED, DO NOT MODIFY
32+
# ================================================================================
33+
weight: 1 # _index.md always has weight of 1 to order correctly
34+
layout: "learningpathall" # All files under learning paths have this same wrapper
35+
learning_path_main_page: "yes" # This should be surfaced when looking for related content. Only set for _index.md of learning path content.
36+
---
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
next_step_guidance: PLACEHOLDER TEXT 1
3+
4+
recommended_path: /learning-paths/PLACEHOLDER_CATEGORY/PLACEHOLDER_LEARNING_PATH/
5+
6+
further_reading:
7+
- resource:
8+
title: PLACEHOLDER MANUAL
9+
link: PLACEHOLDER MANUAL LINK
10+
type: documentation
11+
- resource:
12+
title: PLACEHOLDER BLOG
13+
link: PLACEHOLDER BLOG LINK
14+
type: blog
15+
- resource:
16+
title: PLACEHOLDER GENERAL WEBSITE
17+
link: PLACEHOLDER GENERAL WEBSITE LINK
18+
type: website
19+
20+
21+
# ================================================================================
22+
# FIXED, DO NOT MODIFY
23+
# ================================================================================
24+
weight: 21 # set to always be larger than the content in this path, and one more than 'review'
25+
title: "Next Steps" # Always the same
26+
layout: "learningpathall" # All files under learning paths have this same wrapper
27+
---
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
review:
3+
- questions:
4+
question: >
5+
PLACEHOLDER QUESTION 1?
6+
answers:
7+
- PLACEHOLDER ANSWER A
8+
- PLACEHOLDER ANSWER B
9+
correct_answer: 1
10+
explanation: >
11+
PLACEHOLDER EXPLANATION 1
12+
13+
- questions:
14+
question: >
15+
PLACEHOLDER QUESTION 2?
16+
answers:
17+
- PLACEHOLDER ANSWER A
18+
- PLACEHOLDER ANSWER B
19+
- PLACEHOLDER ANSWER C
20+
- PLACEHOLDER ANSWER D
21+
correct_answer: 4
22+
explanation: >
23+
PLACEHOLDER EXPLANATION 2
24+
25+
- questions:
26+
question: >
27+
PLACEHOLDER QUESTION 3?
28+
answers:
29+
- PLACEHOLDER ANSWER A
30+
- PLACEHOLDER ANSWER B
31+
- PLACEHOLDER ANSWER C
32+
- PLACEHOLDER ANSWER D
33+
correct_answer: 2
34+
explanation: >
35+
PLACEHOLDER EXPLANATION 3
36+
37+
38+
39+
# ================================================================================
40+
# FIXED, DO NOT MODIFY
41+
# ================================================================================
42+
title: "Review" # Always the same title
43+
weight: 20 # Set to always be larger than the content in this path
44+
layout: "learningpathall" # All files under learning paths have this same wrapper
45+
---
61.7 KB
Loading
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: PLACEHOLDER STEP TITLE 1
3+
weight: 2
4+
5+
### FIXED, DO NOT MODIFY
6+
layout: learningpathall
7+
---
8+
9+
## PLACEHOLDER HEADER
10+
YOUR CONTENT GOES HERE
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: PLACEHOLDER STEP TITLE 2
3+
weight: 3
4+
5+
### FIXED, DO NOT MODIFY
6+
layout: learningpathall
7+
---
8+
9+
## PLACEHOLDER HEADER OF SECOND STEP
10+
YOUR CONTENT GOES HERE
11+
12+
IMAGE HERE:
13+
![example image alt-text#center](example-picture.png "Figure 1. Example image caption")

content/learning-paths/servers-and-cloud-computing/PMUv3_plugin_learning_path/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Learn to use PMUV3_PLUGIN to do performance analysis at a code level and analyse hotspots
2+
title: Performance analysis at a code level using PMUv3_plugin
33

44
minutes_to_complete: 60
55

0 commit comments

Comments
 (0)