Installing cardano-node 10.6.2
Install cardano-node and cardano-cli 10.6.2 from official release binaries.
This section installs cardano-node 10.6.2 from official GitHub release artifacts.
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.txtFor arm64 Linux:
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.txt2) Verify checksum
sha256sum cardano-node-10.6.2-linux-*.tar.gz
cat cardano-node-10.6.2-sha256sums.txtCompare 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):
Optionally install additional tools if present in the archive:
4) Validate installation
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/:
Latest configs are also available from the Intersect environments page.
Binaries and configs are installed. Continue to Relay Configuration to set up and launch your node.
Last updated