Skip to content

Commit eaeb7f9

Browse files
Merge pull request #3486 from jasonrandrews/review
Starting tech review of Arm Toolchains Repository install guide
2 parents 55c6ba9 + 1bb4c6c commit eaeb7f9

1 file changed

Lines changed: 27 additions & 28 deletions

File tree

content/install-guides/arm-toolchains-repository.md

Lines changed: 27 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,32 @@
11
---
2-
### Title the install tools article with the name of the tool to be installed
3-
### Include vendor name where appropriate
42
title: Arm Toolchains Repository
53

64
draft: true
75

8-
### Optional additional search terms (one per line) to assist in finding the article
96
additional_search_terms:
107
- Arm Toolchains
118
- Arm Toolchain for Linux
129
- Arm Performance Libraries
1310
- Linux
1411
- HPC
1512

16-
### Estimated completion time in minutes (please use integer multiple of 5)
1713
minutes_to_complete: 15
1814

1915
test_maintenance: false
2016
test_images:
2117
- ubuntu:latest
2218

23-
### Link to official documentation
2419
official_docs: https://developer.arm.com/tools-and-software
2520
description: Configure the Arm Toolchains Repository package archive on supported Linux AArch64 distributions to enable installing Arm Toolchains products using the system package manager.
2621
author: Gary Carroll
2722

28-
### PAGE SETUP
2923
weight: 1 # Defines page ordering. Must be 1 for first (or only) page.
3024
tool_install: true # Set to true to be listed in main selection page, else false
3125
multi_install: false # Set to true if first page of multi-page article, else false
3226
multitool_install_part: false # Set to true if a sub-page of a multi-page article, else false
3327
layout: installtoolsall # DO NOT MODIFY. Always true for tool install articles
3428
---
3529

36-
# Arm Toolchains Repository
37-
3830
The Arm Toolchains Linux repositories provide a native and convenient way to install selected Arm software products on supported Linux hosts using the host operating system package manager.
3931

4032
The repositories are published at [https://developer.arm.com/packages/arm-toolchains/](https://developer.arm.com/packages/arm-toolchains/).
@@ -46,7 +38,7 @@ They are used to distribute Linux packages for Arm Toolchains products, includin
4638

4739
Using the Arm Toolchains Linux repositories allows you to install, upgrade, and manage these products using standard Linux package-management tools such as `apt`, `dnf`, `yum`, and `zypper`.
4840

49-
Note: root permissions are required to install system packages.
41+
Root or `sudo` permissions are required to install system packages.
5042

5143
{{% notice Repository signing key update July 2026 %}}
5244
Arm has recently reviewed and strengthened the repository management and publication processes used for the Arm Toolchains Linux repositories.
@@ -60,17 +52,27 @@ Existing installed copies of Arm Toolchain for Linux and Arm Performance Librari
6052

6153
## Before you begin
6254

63-
You need a supported Linux host with `aarch64` architecture.
55+
Confirm you are using an Arm Linux system by running:
56+
57+
```bash
58+
uname -m
59+
```
6460

65-
You also need the package manager for your Linux distribution:
61+
The output should be:
62+
63+
```output
64+
aarch64
65+
```
66+
67+
The commands in this guide use the native package manager for your distribution:
6668

6769
- `apt` for Ubuntu LTS releases from 22.04
6870
- `dnf` or `yum` for RHEL 8 or later and Amazon Linux 2023
6971
- `zypper` for SLES 15 or 16
7072

7173
## What is the Arm Toolchains repository package?
7274

73-
Arm provides an `arm-toolchains-repository` package for each supported Linux distribution.
75+
Arm provides an `arm-toolchains-repository` for each supported Linux distribution.
7476

7577
This package configures the Arm Toolchains Linux package repository on your host system.
7678

@@ -84,27 +86,34 @@ Install this repository package before you install Arm Toolchain for Linux or Ar
8486

8587
## Why the signing key matters
8688

87-
Linux package managers use signing keys to verify that repository metadata and packages come from the expected publisher.
89+
Linux package managers use cryptographic signing keys to verify that repository metadata and packages are authentic and come directly from Arm.
90+
91+
If you are setting up a new system, installing the `arm-toolchains-repository` package automatically configures the current repository signing key for you. No manual key installation or fingerprint verification is required.
8892

89-
For the Arm Toolchains Linux repositories, the signing key is part of the trust model for package installation and upgrades. If your package manager does not have the current Arm Toolchains repository signing key installed, it might refuse to refresh repository metadata or install packages from the repository.
93+
However, if you are upgrading a system that previously configured the Arm Toolchains Linux repository before July 2026, you must update the repository configuration to use the new key. Otherwise, your package manager may refuse to refresh repository metadata or install packages.
9094

91-
The previous Arm Toolchains repository signing key was replaced in July 2026.
95+
### Repository signing key fingerprints
9296

93-
The previous key fingerprint was:
97+
For reference or manual verification, the fingerprints of the previous and current Arm Toolchains signing keys are:
98+
99+
Previous fingerprint:
94100

95101
```output
96102
EE37 7ACD D5AD 4AB6 BD79 9B8A B83D 741E 7A05 AF82
97103
```
98104

99-
The current key fingerprint is:
105+
Current fingerprint:
100106

101107
```output
102108
A406 5BCE 9386 DD1E 62FD E03B 8144 CA16 11A0 BD71
103109
```
104110

105-
You can display the fingerprint from a downloaded key file with:
111+
### (Optional) Manually verifying the signing key
112+
113+
If you want to manually verify the signing key, ensure the `gpg` utility (part of GnuPG) is installed on your system, then download the key file and display its fingerprint:
106114

107115
```bash
116+
curl -O https://developer.arm.com/packages/arm-toolchains/arm-toolchains.gpg
108117
gpg --show-keys --fingerprint arm-toolchains.gpg
109118
```
110119

@@ -149,49 +158,41 @@ The examples below install the repository package directly from [https://develop
149158
{{< tabpane code=true >}}
150159
{{< tab header="Ubuntu 24.04" language="bash" >}}
151160
curl -O https://developer.arm.com/packages/arm-toolchains/ubuntu/pool/arm-toolchains-repository_2-2~noble_all.deb
152-
153161
sudo dpkg -i arm-toolchains-repository_2-2~noble_all.deb
154162
sudo apt update
155163
{{< /tab >}}
156164
{{< tab header="Ubuntu 22.04" language="bash" >}}
157165
curl -O https://developer.arm.com/packages/arm-toolchains/ubuntu/pool/arm-toolchains-repository_2-2~jammy_all.deb
158-
159166
sudo dpkg -i arm-toolchains-repository_2-2~jammy_all.deb
160167
sudo apt update
161168
{{< /tab >}}
162169
{{< tab header="RHEL 10" language="bash" >}}
163170
sudo dnf install -y https://developer.arm.com/packages/arm-toolchains/rhel/el10/aarch64/arm-toolchains-repository-2-2.el10.noarch.rpm
164-
165171
sudo dnf clean all
166172
sudo dnf makecache
167173
{{< /tab >}}
168174
{{< tab header="RHEL 9" language="bash" >}}
169175
sudo dnf install -y https://developer.arm.com/packages/arm-toolchains/rhel/el9/aarch64/arm-toolchains-repository-2-2.el9.noarch.rpm
170-
171176
sudo dnf clean all
172177
sudo dnf makecache
173178
{{< /tab >}}
174179
{{< tab header="RHEL 8" language="bash" >}}
175180
sudo dnf install -y https://developer.arm.com/packages/arm-toolchains/rhel/el8/aarch64/arm-toolchains-repository-2-2.el8.noarch.rpm
176-
177181
sudo dnf clean all
178182
sudo dnf makecache
179183
{{< /tab >}}
180184
{{< tab header="Amazon Linux 2023" language="bash" >}}
181185
sudo dnf install -y https://developer.arm.com/packages/arm-toolchains/amazonlinux/al2023/aarch64/arm-toolchains-repository-2-2.al2023.noarch.rpm
182-
183186
sudo dnf clean all
184187
sudo dnf makecache
185188
{{< /tab >}}
186189
{{< tab header="SLES 15" language="bash" >}}
187190
sudo zypper install -y https://developer.arm.com/packages/arm-toolchains/sles/sles15/aarch64/arm-toolchains-repository-2-2.sles15.noarch.rpm
188-
189191
sudo zypper clean
190192
sudo zypper refresh
191193
{{< /tab >}}
192194
{{< tab header="SLES 16" language="bash" >}}
193195
sudo zypper install -y https://developer.arm.com/packages/arm-toolchains/sles/sles16/aarch64/arm-toolchains-repository-2-2.sles16.noarch.rpm
194-
195196
sudo zypper clean
196197
sudo zypper refresh
197198
{{< /tab >}}
@@ -245,7 +246,6 @@ Install the current Arm Toolchains repository signing key:
245246

246247
```bash
247248
curl -O https://developer.arm.com/packages/arm-toolchains/arm-toolchains.gpg
248-
249249
sudo install -D -m 0644 arm-toolchains.gpg \
250250
/usr/share/keyrings/arm-toolchains-archive-keyring.gpg
251251
```
@@ -294,7 +294,6 @@ Install the current Arm Toolchains repository signing key:
294294

295295
```bash
296296
curl -O https://developer.arm.com/packages/arm-toolchains/arm-toolchains.gpg
297-
298297
sudo rpm --import arm-toolchains.gpg
299298
```
300299

0 commit comments

Comments
 (0)