Skip to content

Commit 63041a2

Browse files
committed
add Ubuntu version-specific binary
1 parent 3268cb2 commit 63041a2

File tree

3 files changed

+45
-21
lines changed

3 files changed

+45
-21
lines changed

src/content/cre/getting-started/cli-installation/macos-linux.mdx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,15 @@ The file you need depends on your operating system and CPU architecture:
8989
- On **macOS** (darwin), run <CopyText text="uname -m" code />:
9090
- `arm64` (Apple Silicon) → Download `cre_darwin_arm64.zip`
9191
- `x86_64` (Intel) → Download `cre_darwin_amd64.zip`
92-
- On **Linux**, run <CopyText text="uname -m" code />:
93-
- `aarch64` (ARM) → Download `cre_linux_arm64.tar.gz`
94-
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64.tar.gz`
92+
- On **Linux**, the binary depends on both your architecture and OS version. First, run <CopyText text="uname -m" code /> to check your architecture, then <CopyText text="lsb_release -rs" code /> to check your Ubuntu version:
93+
- **Ubuntu 22.04 or older**:
94+
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64_ldd2-35.tar.gz`
95+
- `aarch64` (ARM) → Download `cre_linux_arm64_ldd2-35.tar.gz`
96+
- **Ubuntu 24.04 or newer**:
97+
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64.tar.gz`
98+
- `aarch64` (ARM) → Download `cre_linux_arm64.tar.gz`
99+
100+
**Note:** The `ldd2-35` binaries are compiled for older glibc versions (2.35 and below). If you're using a non-Ubuntu Linux distribution, check your glibc version with <CopyText text="ldd --version" code /> and use the `ldd2-35` binary if your version is 2.35 or lower.
95101

96102
</Aside>
97103

@@ -118,7 +124,9 @@ Compare the output with the official checksum below:
118124
| `cre_darwin_amd64.zip` | <CopyText text="87f62d25ce0517473a97ff7e66220a2f0bbcc40ebe94309964c0bb29a267dcd1" code /> |
119125
| `cre_darwin_arm64.zip` | <CopyText text="e21677d3f307aa63b4513b1bce597fb0d97e1f94e2094fdc85cc400084036a7c" code /> |
120126
| `cre_linux_amd64.tar.gz` | <CopyText text="58d682739e390c8046795ca2871fada94aa39dbea8e0062179000bed3b895913" code /> |
127+
| `cre_linux_amd64_ldd2-35.tar.gz` | <CopyText text="7218b517e9837687bfff6ff9de16108b57808f23e85263452b819e0a230717ef" code /> |
121128
| `cre_linux_arm64.tar.gz` | <CopyText text="9826e1a3c46485b7f524e70da96aeac18a13570d0a2f5a660ff52e8b532fee51" code /> |
129+
| `cre_linux_arm64_ldd2-35.tar.gz` | <CopyText text="7afd0ab30dc4ecdfb45c2a5bdc75c1267c38984409d55f0d6646c55179975d4f" code /> |
122130

123131
If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
124132

src/content/cre/llms-full-go.txt

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -599,9 +599,15 @@ The CRE CLI is publicly available on GitHub. Visit the releases page and downloa
599599
- On **macOS** (darwin), run <CopyText text="uname -m" code />:
600600
- `arm64` (Apple Silicon) → Download `cre_darwin_arm64.zip`
601601
- `x86_64` (Intel) → Download `cre_darwin_amd64.zip`
602-
- On **Linux**, run <CopyText text="uname -m" code />:
603-
- `aarch64` (ARM) → Download `cre_linux_arm64.tar.gz`
604-
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64.tar.gz`
602+
- On **Linux**, the binary depends on both your architecture and OS version. First, run <CopyText text="uname -m" code /> to check your architecture, then <CopyText text="lsb_release -rs" code /> to check your Ubuntu version:
603+
- **Ubuntu 22.04 or older**:
604+
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64_ldd2-35.tar.gz`
605+
- `aarch64` (ARM) → Download `cre_linux_arm64_ldd2-35.tar.gz`
606+
- **Ubuntu 24.04 or newer**:
607+
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64.tar.gz`
608+
- `aarch64` (ARM) → Download `cre_linux_arm64.tar.gz`
609+
610+
**Note:** The `ldd2-35` binaries are compiled for older glibc versions (2.35 and below). If you're using a non-Ubuntu Linux distribution, check your glibc version with <CopyText text="ldd --version" code /> and use the `ldd2-35` binary if your version is 2.35 or lower.
605611
</Aside>
606612

607613
After downloading the correct file from the releases page, move on to the next step to verify its integrity.
@@ -622,12 +628,14 @@ shasum -a 256 cre_darwin_arm64.zip
622628

623629
Compare the output with the official checksum below:
624630

625-
| File | SHA-256 Checksum |
626-
| ------------------------ | ---------------------------------------------------------------- |
627-
| `cre_darwin_amd64.zip` | 87f62d25ce0517473a97ff7e66220a2f0bbcc40ebe94309964c0bb29a267dcd1 |
628-
| `cre_darwin_arm64.zip` | e21677d3f307aa63b4513b1bce597fb0d97e1f94e2094fdc85cc400084036a7c |
629-
| `cre_linux_amd64.tar.gz` | 58d682739e390c8046795ca2871fada94aa39dbea8e0062179000bed3b895913 |
630-
| `cre_linux_arm64.tar.gz` | 9826e1a3c46485b7f524e70da96aeac18a13570d0a2f5a660ff52e8b532fee51 |
631+
| File | SHA-256 Checksum |
632+
| -------------------------------- | ---------------------------------------------------------------- |
633+
| `cre_darwin_amd64.zip` | 87f62d25ce0517473a97ff7e66220a2f0bbcc40ebe94309964c0bb29a267dcd1 |
634+
| `cre_darwin_arm64.zip` | e21677d3f307aa63b4513b1bce597fb0d97e1f94e2094fdc85cc400084036a7c |
635+
| `cre_linux_amd64.tar.gz` | 58d682739e390c8046795ca2871fada94aa39dbea8e0062179000bed3b895913 |
636+
| `cre_linux_amd64_ldd2-35.tar.gz` | 7218b517e9837687bfff6ff9de16108b57808f23e85263452b819e0a230717ef |
637+
| `cre_linux_arm64.tar.gz` | 9826e1a3c46485b7f524e70da96aeac18a13570d0a2f5a660ff52e8b532fee51 |
638+
| `cre_linux_arm64_ldd2-35.tar.gz` | 7afd0ab30dc4ecdfb45c2a5bdc75c1267c38984409d55f0d6646c55179975d4f |
631639

632640
If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
633641

src/content/cre/llms-full-ts.txt

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -599,9 +599,15 @@ The CRE CLI is publicly available on GitHub. Visit the releases page and downloa
599599
- On **macOS** (darwin), run <CopyText text="uname -m" code />:
600600
- `arm64` (Apple Silicon) → Download `cre_darwin_arm64.zip`
601601
- `x86_64` (Intel) → Download `cre_darwin_amd64.zip`
602-
- On **Linux**, run <CopyText text="uname -m" code />:
603-
- `aarch64` (ARM) → Download `cre_linux_arm64.tar.gz`
604-
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64.tar.gz`
602+
- On **Linux**, the binary depends on both your architecture and OS version. First, run <CopyText text="uname -m" code /> to check your architecture, then <CopyText text="lsb_release -rs" code /> to check your Ubuntu version:
603+
- **Ubuntu 22.04 or older**:
604+
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64_ldd2-35.tar.gz`
605+
- `aarch64` (ARM) → Download `cre_linux_arm64_ldd2-35.tar.gz`
606+
- **Ubuntu 24.04 or newer**:
607+
- `x86_64` (AMD/Intel) → Download `cre_linux_amd64.tar.gz`
608+
- `aarch64` (ARM) → Download `cre_linux_arm64.tar.gz`
609+
610+
**Note:** The `ldd2-35` binaries are compiled for older glibc versions (2.35 and below). If you're using a non-Ubuntu Linux distribution, check your glibc version with <CopyText text="ldd --version" code /> and use the `ldd2-35` binary if your version is 2.35 or lower.
605611
</Aside>
606612

607613
After downloading the correct file from the releases page, move on to the next step to verify its integrity.
@@ -622,12 +628,14 @@ shasum -a 256 cre_darwin_arm64.zip
622628

623629
Compare the output with the official checksum below:
624630

625-
| File | SHA-256 Checksum |
626-
| ------------------------ | ---------------------------------------------------------------- |
627-
| `cre_darwin_amd64.zip` | 87f62d25ce0517473a97ff7e66220a2f0bbcc40ebe94309964c0bb29a267dcd1 |
628-
| `cre_darwin_arm64.zip` | e21677d3f307aa63b4513b1bce597fb0d97e1f94e2094fdc85cc400084036a7c |
629-
| `cre_linux_amd64.tar.gz` | 58d682739e390c8046795ca2871fada94aa39dbea8e0062179000bed3b895913 |
630-
| `cre_linux_arm64.tar.gz` | 9826e1a3c46485b7f524e70da96aeac18a13570d0a2f5a660ff52e8b532fee51 |
631+
| File | SHA-256 Checksum |
632+
| -------------------------------- | ---------------------------------------------------------------- |
633+
| `cre_darwin_amd64.zip` | 87f62d25ce0517473a97ff7e66220a2f0bbcc40ebe94309964c0bb29a267dcd1 |
634+
| `cre_darwin_arm64.zip` | e21677d3f307aa63b4513b1bce597fb0d97e1f94e2094fdc85cc400084036a7c |
635+
| `cre_linux_amd64.tar.gz` | 58d682739e390c8046795ca2871fada94aa39dbea8e0062179000bed3b895913 |
636+
| `cre_linux_amd64_ldd2-35.tar.gz` | 7218b517e9837687bfff6ff9de16108b57808f23e85263452b819e0a230717ef |
637+
| `cre_linux_arm64.tar.gz` | 9826e1a3c46485b7f524e70da96aeac18a13570d0a2f5a660ff52e8b532fee51 |
638+
| `cre_linux_arm64_ldd2-35.tar.gz` | 7afd0ab30dc4ecdfb45c2a5bdc75c1267c38984409d55f0d6646c55179975d4f |
631639

632640
If the checksum doesn't match, do not proceed with installation. Contact your Chainlink point of contact for assistance.
633641

0 commit comments

Comments
 (0)