# Installing cardano-node 10.6.2

This section installs **cardano-node 10.6.2** from official GitHub release artifacts.

{% hint style="info" %}
Path layout: `/home/cardano/cnode/{config,db,sockets,keys,logs,scripts}` — kept compatible with existing SPO setups.
{% endhint %}

## 1) Download release artifacts

For **x86\_64 / amd64** Linux:

```bash
cd /tmp
curl -L -o cardano-node-10.6.2-linux-amd64.tar.gz \
  https://github.com/IntersectMBO/cardano-node/releases/download/10.6.2/cardano-node-10.6.2-linux-amd64.tar.gz
curl -L -o cardano-node-10.6.2-sha256sums.txt \
  https://github.com/IntersectMBO/cardano-node/releases/download/10.6.2/cardano-node-10.6.2-sha256sums.txt
```

For **arm64** Linux:

```bash
cd /tmp
curl -L -o cardano-node-10.6.2-linux-arm64.tar.gz \
  https://github.com/IntersectMBO/cardano-node/releases/download/10.6.2/cardano-node-10.6.2-linux-arm64.tar.gz
curl -L -o cardano-node-10.6.2-sha256sums.txt \
  https://github.com/IntersectMBO/cardano-node/releases/download/10.6.2/cardano-node-10.6.2-sha256sums.txt
```

## 2) Verify checksum

```bash
sha256sum cardano-node-10.6.2-linux-*.tar.gz
cat cardano-node-10.6.2-sha256sums.txt
```

Compare your tarball's checksum with the matching line in the official checksums file. They must match exactly.

## 3) Install binaries

Extract the tarball (use the correct filename for your architecture):

```bash
tar -xzf cardano-node-10.6.2-linux-*.tar.gz
install -m 755 ./bin/cardano-node ./bin/cardano-cli $HOME/.local/bin/
```

Optionally install additional tools if present in the archive:

```bash
[ -f ./bin/cardano-submit-api ] && install -m 755 ./bin/cardano-submit-api $HOME/.local/bin/
[ -f ./bin/cardano-tracer ] && install -m 755 ./bin/cardano-tracer $HOME/.local/bin/
```

## 4) Validate installation

```bash
which cardano-node
which cardano-cli
cardano-node --version
cardano-cli --version
```

You should see **cardano-node 10.6.2**. The `cardano-cli` version is released separately and may show a different version (e.g., 10.15.x).

## 5) Install network configuration files

The release archive contains environment configs under `./share/`:

{% tabs %}
{% tab title="Mainnet" %}

```bash
cp ./share/mainnet/* $HOME/cnode/config/
```

{% endtab %}

{% tab title="Testnet (pre-prod)" %}

```bash
cp ./share/preprod/* $HOME/cnode/config/
```

{% endtab %}
{% endtabs %}

Latest configs are also available from the [Intersect environments page](https://book.play.dev.cardano.org/environments.html).

***

Binaries and configs are installed. Continue to **Relay Configuration** to set up and launch your node.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://cardano-node-installation.stakepool247.eu/cardano-node-installation-process.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
