Skip to content

Commit fa53c89

Browse files
Merge pull request #2726 from ArmDeveloperEcosystem/main
production update
2 parents 7490a58 + b187fb2 commit fa53c89

3 files changed

Lines changed: 35 additions & 29 deletions

File tree

content/install-guides/codex-cli.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Codex CLI
3-
draft: true
3+
44
author: Joe Stech
55
minutes_to_complete: 10
66
official_docs: https://developers.openai.com/codex/cli/
@@ -16,9 +16,9 @@ tool_install: true
1616
weight: 1
1717
---
1818

19-
Codex CLI is a lightweight coding agent from OpenAI that runs locally in your terminal. It can help you with coding tasks, understand your codebase, run commands, and assist with development workflows.
19+
Codex CLI is a local, terminal-based coding agent from OpenAI that helps developers explore codebases, generate changes, and run commands using natural language. It’s useful for tasks such as understanding unfamiliar projects, refactoring code, and accelerating development workflows directly from the command line.
2020

21-
It supports multiple operating systems, including Arm-based Linux distributions and macOS.
21+
Codex CLI supports multiple operating systems, including Arm-based Linux distributions and macOS. By integrating AI assistance directly into command-line workflows, it reduces context switching during development.
2222

2323
This guide explains how to install Codex CLI on macOS and Arm Linux.
2424

@@ -28,11 +28,9 @@ You need an OpenAI account to use Codex CLI. You can either sign in with your [C
2828

2929
Codex CLI requires Node.js 18 or later.
3030

31-
This guide explains how to install Codex CLI on macOS and Arm Linux.
32-
3331
## How do I download and install Codex CLI?
3432

35-
On most systems, you should install codex using `npm`. On macOS Homebrew can also be used.
33+
On most systems, install Codex CLI using npm. On macOS, there is also the option for you to use Homebrew.
3634

3735
### How do I use npm to install Codex CLI?
3836

@@ -66,13 +64,15 @@ Install the required packages on Ubuntu/Debian systems:
6664
sudo apt update && sudo apt install -y curl
6765
```
6866

69-
If you are not using Ubuntu/Debian use your package manager to install curl.
67+
If you're not using Ubuntu/Debian, use your package manager to install curl.
7068

7169
### How do I install Node.js on Arm Linux?
7270

71+
{{% notice Note %}}If you already have Node.js 18 or later installed, you can skip this section.{{% /notice %}}
72+
7373
Codex CLI requires Node.js version 18 or higher. The easiest way to install Node.js on Arm Linux is using the NodeSource repository.
7474

75-
Download and run the Node.js setup script (example shown for Node.js 22.x):
75+
Download and run the Node.js setup script. For example, for Node.js 22.x:
7676

7777
```bash
7878
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
@@ -120,7 +120,7 @@ sudo npm install -g @openai/codex
120120

121121
This downloads and installs the latest version of Codex CLI.
122122

123-
### How do I confirm Codex CLI is working?
123+
## How do I confirm Codex CLI is working?
124124

125125
You now have the latest version of Codex CLI installed.
126126

@@ -133,10 +133,10 @@ codex --version
133133
The output shows the version:
134134

135135
```output
136-
@openai/codex, 0.77.0
136+
@openai/codex, 0.79.0
137137
```
138138

139-
### How do I authenticate with OpenAI?
139+
## How do I authenticate with OpenAI?
140140

141141
There are two ways to authenticate with Codex CLI.
142142

@@ -229,10 +229,10 @@ At the Codex prompt, run the `/mcp` command to view active MCP servers and their
229229
/mcp
230230
```
231231

232-
You should see the Arm MCP server listed. If the arm-mcp server says it's still loading, wait a moment and check again.
232+
The Arm MCP server is listed in the output. If the arm-mcp server indicates it's still loading, wait a moment and check again.
233233

234234
You can also verify the tools are available by asking Codex to list the available Arm MCP tools.
235235

236-
If you are facing issues or have questions, reach out to mcpserver@arm.com.
236+
If you're facing issues or have questions, reach out to mcpserver@arm.com.
237237

238-
You're ready to use Codex CLI.
238+
You're now ready to use Codex CLI with Arm-specific development assistance.

content/install-guides/linux-migration-tools.md

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
title: Arm Linux Migration Tools
33

4-
draft: true
5-
64
additional_search_terms:
75
- migration
86
- porting
@@ -42,11 +40,11 @@ multitool_install_part: false
4240
weight: 1
4341
---
4442

45-
[Arm Linux Migration Tools](https://github.com/arm/arm-linux-migration-tools) provides a comprehensive collection of thirteen essential utilities to help you migrate applications from x86 to Arm Linux systems. Instead of installing and managing each tool individually, you get everything you need in a single, streamlined installation.
43+
[Arm Linux Migration Tools](https://github.com/arm/arm-linux-migration-tools) provides a comprehensive collection of 13 essential utilities to help you migrate applications from x86 to Arm Linux systems. Instead of installing and managing each tool individually, get everything you need in a single, streamlined installation.
4644

47-
This package includes code analysis, performance, and migration tools such as Sysreport, Skopeo, LLVM Machine Code Analyzer, Telemetry Solution, KubeArchInspect, Migrate Ease, Aperf, BOLT, PAPI, Perf, Process Watch, Check Image, and Porting Advisor for Graviton. These tools help you assess application compatibility, analyze performance characteristics, optimize code layout, and identify potential issues before and after migration.
45+
This package includes code analysis, performance, and migration tools such as Sysreport, Skopeo, LLVM Machine Code Analyzer, Telemetry Solution, KubeArchInspect, Migrate Ease, Aperf, BOLT, PAPI, Perf, Process Watch, Check Image, and Porting Advisor for Graviton. These tools assess application compatibility, analyze performance characteristics, optimize code layout, and identify potential issues before and after migration.
4846

49-
Whether you're migrating containerized applications, analyzing system performance, or optimizing binaries for Arm processors, this package simplifies your migration workflow by providing all the necessary tools through a unified installation process, saving you time on setup and configuration.
47+
Whether you're migrating containerized applications, analyzing system performance, or optimizing binaries for Arm processors, this package simplifies your migration workflow by providing all necessary tools through a unified installation process.
5048

5149
## What are the tools included in Arm Linux Migration Tools?
5250

@@ -154,7 +152,7 @@ cd arm-linux-migration-tools
154152
sudo ./scripts/install.sh
155153
```
156154

157-
After successful installation, you can remove the downloaded files:
155+
After successful installation, remove the downloaded files:
158156

159157
```bash
160158
cd ..
@@ -202,7 +200,7 @@ The install script:
202200
- Sets up the Python virtual environment with the built dependencies
203201
- Configures permissions for all installed components
204202

205-
After successful installation, you can clean up the build directory:
203+
After successful installation, clean up the build directory:
206204

207205
```bash
208206
cd ..
@@ -213,21 +211,29 @@ rm -rf arm-linux-migration-tools
213211

214212
After successful installation, the Arm Linux Migration Tools are organized in a structured directory layout that separates the core tools, dependencies, and user-accessible commands. Understanding this structure helps you troubleshoot issues and manage the installation effectively.
215213

216-
All tools and their dependencies are installed in the `/opt/arm-migration-tools/` directory. Review the details of the software installed there.
214+
All tools and their dependencies are installed in the `/opt/arm-migration-tools/` directory:
215+
216+
```bash
217+
ls /opt/arm-migration-tools/
218+
```
217219

218-
For easy access from anywhere in your system, wrapper scripts are also installed in `/usr/local/bin/`, making it easier to invoke each tool. View the available executables there.
220+
For easy access from anywhere in your system, wrapper scripts are installed in `/usr/local/bin/`:
221+
222+
```bash
223+
ls /usr/local/bin/ | grep -E "(sysreport|skopeo|llvm-mca|topdown-tool|kubearchinspect|migrate-ease|aperf|llvm-bolt|papi|perf|processwatch|check-image|porting-advisor)"
224+
```
219225

220226
### Python virtual environment
221227

222228
A Python virtual environment is located at `/opt/arm-migration-tools/venv/` and contains all Python packages required by the migration tools.
223229

224-
The wrapper scripts in `/usr/local/bin` use this environment automatically, but you can activate it with:
230+
The wrapper scripts in `/usr/local/bin` use this environment automatically. To activate it manually:
225231

226232
```bash
227233
source /opt/arm-migration-tools/venv/bin/activate
228234
```
229235

230-
You can view the installed Python packages in the virtual environment:
236+
View the installed Python packages in the virtual environment:
231237

232238
```bash
233239
/opt/arm-migration-tools/venv/bin/pip list
@@ -295,15 +301,15 @@ Execute the included test script to verify all 13 tools are properly installed a
295301
The script performs a basic invocation of each tool to confirm it runs.
296302

297303
{{% notice Note %}}
298-
If you get an error on Topdown Tool you need to run the commands below.
304+
If you get an error when running Topdown Tool, run these commands:
299305
```console
300306
sudo sh -c "echo -1 > /proc/sys/kernel/perf_event_paranoid"
301307
sudo sh -c "echo 0 > /proc/sys/kernel/kptr_restrict"
302308
```
303-
More information about the options is in the [Linux Perf install guide](/install-guides/perf/).
309+
For more information about these options, see the [Linux Perf install guide](/install-guides/perf/).
304310
{{% /notice %}}
305311

306-
### Next steps
312+
## Next steps
307313

308314
Now that you have successfully installed and verified the Arm Linux Migration Tools, you're ready to begin.
309315

content/learning-paths/servers-and-cloud-computing/arm-mcp-server/1-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ The required configuration steps vary by AI coding assistant. Refer to the insta
9292
- [GitHub Copilot](/install-guides/github-copilot/)
9393
- [Gemini CLI](/install-guides/gemini/)
9494
- [Kiro CLI](/install-guides/kiro-cli/)
95-
- Codex CLI
95+
- [Codex CLI](/install-guides/codex-cli/)
9696

9797
In the next section, you'll use direct AI chat with the Arm MCP Server to check Docker base images for Arm compatibility.

0 commit comments

Comments
 (0)