From b58227937de6ffefb474dcf82bfe8b6ab9228d6c Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Thu, 26 Mar 2020 17:49:07 +1100 Subject: [PATCH] New documentation for building/running the node --- doc/building-running.md | 63 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 doc/building-running.md diff --git a/doc/building-running.md b/doc/building-running.md new file mode 100644 index 00000000000..8f645cf6330 --- /dev/null +++ b/doc/building-running.md @@ -0,0 +1,63 @@ +**Validated: 2020/03/26** + +# Building Cardano Node + +There are a number of ways the Cardano Node can be built and run, but the following document +details the Nix and Ubuntu/Debian methods. The Nix method is probably more robust and foolproof +than installing on Ubuntu/Debian. + + +### Building under Nix + +The [Nix Package Manager][nix] can be installed on most Linux distributions by downloading and +running the installation script: +``` +curl https://nixos.org/nix/install > install-nix.sh +./install-nix.sh +``` +and following the directions. + +To improve build speed, it is possible to set up a binary cache maintained by IOHK (**this is +optional**): +``` +sudo mkdir -p /etc/nix +cat <