Cardano Node Installation process

Install cardano-node/cardano-cli 10.6.2 using official release binaries.

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

circle-info

Path layout is kept compatible with existing SPO setups: /home/cardano/cnode/{config,db,sockets,keys,logs,scripts}.

1) Download release artifacts

For x86_64 / amd64 Linux:

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, use:

https://github.com/IntersectMBO/cardano-node/releases/download/10.6.2/cardano-node-10.6.2-linux-arm64.tar.gz

2) Verify checksum

sha256sum cardano-node-10.6.2-linux-amd64.tar.gz
cat cardano-node-10.6.2-sha256sums.txt

Compare the tarball checksum with the official checksum file.

3) Install binaries

If the archive contains cardano-submit-api and cardano-tracer, you can install them too:

4) Validate installation

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

5) Install network configuration files

The release archive already contains current environment configs under ./share/.

Copy mainnet files:

If you prefer, you can fetch from Intersect environments page:

  • https://book.play.dev.cardano.org/environments.html

6) Prepare systemd service (example)

Create /etc/systemd/system/cardano-node.service:

Then enable/start:

7) Check sync progress

In another terminal:

When syncProgress approaches 100, the node is near tip.


✅ Done — node 10.6.2 is installed and running.

Last updated