From 21a726cc2a28b3b7b3765e771e2b65cb86d3d8c2 Mon Sep 17 00:00:00 2001 From: Arnaud Bailly Date: Thu, 30 Nov 2023 20:05:54 +0100 Subject: [PATCH 1/3] Fix URLs to download software and add some help text --- docs/docs/tutorial/index.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/docs/tutorial/index.md b/docs/docs/tutorial/index.md index 320d6a3f716..816f9fa4817 100644 --- a/docs/docs/tutorial/index.md +++ b/docs/docs/tutorial/index.md @@ -41,7 +41,7 @@ components of the Cardano ecosystem, putting them in a `bin/` directory: ```shell mkdir -p bin -curl -L -O https://github.com/input-output-hk/hydra/releases/download/0.12.0/hydra-x86_64-unknown-linux-musl.zip +curl -L -O https://github.com/input-output-hk/hydra/releases/download/0.14.0/hydra-aarch64-darwin-0.14.0.zip unzip -d bin hydra-x86_64-unknown-linux-musl.zip curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz \ | tar xz -C bin ./cardano-node ./cardano-cli @@ -57,6 +57,11 @@ chmod +x bin/* mkdir -p bin curl -L -o - https://github.com/input-output-hk/hydra/releases/download/0.12.0/tutorial-binaries-aarch64-darwin.tar.gz \ | tar xz -C bin +curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-macos-x64.tar.gz \ + | tar xz -C bin +curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-macos.tar.gz \ + | tar xz -C bin cardano-node cardano-cli '*.dylib' +chmod +x bin/mithril-client ``` @@ -152,7 +157,10 @@ cardano-node run \ ``` To interact with the `cardano-node` we will be using the `cardano-cli` -with `cardano-cli` we can now check the synchronization status: +with `cardano-cli` we can now check the synchronization status. You +will need to open another terminal window as running the +`cardano-node` in the foreground prevents you from running other +commands: ```shell cardano-cli query tip From bbf73a5306e820c299f46d3d2dc23b2856d29c93 Mon Sep 17 00:00:00 2001 From: Arnaud Bailly <79840582+abailly-iohk@users.noreply.github.com> Date: Fri, 1 Dec 2023 14:14:56 +0100 Subject: [PATCH 2/3] Update docs/docs/tutorial/index.md Co-authored-by: Sebastian Nagel --- docs/docs/tutorial/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/tutorial/index.md b/docs/docs/tutorial/index.md index 816f9fa4817..7490addeda2 100644 --- a/docs/docs/tutorial/index.md +++ b/docs/docs/tutorial/index.md @@ -55,8 +55,8 @@ chmod +x bin/* ```shell mkdir -p bin -curl -L -o - https://github.com/input-output-hk/hydra/releases/download/0.12.0/tutorial-binaries-aarch64-darwin.tar.gz \ - | tar xz -C bin +curl -L -O https://github.com/input-output-hk/hydra/releases/download/0.14.0/hydra-aarch64-darwin-0.14.0.zip +unzip -d bin hydra-aarch64-darwin-0.14.0.zip curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-macos-x64.tar.gz \ | tar xz -C bin curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-macos.tar.gz \ From d718182a9443acca742834e119b3b0f305f5046d Mon Sep 17 00:00:00 2001 From: Arnaud Bailly <79840582+abailly-iohk@users.noreply.github.com> Date: Fri, 1 Dec 2023 14:15:03 +0100 Subject: [PATCH 3/3] Update docs/docs/tutorial/index.md Co-authored-by: Sebastian Nagel --- docs/docs/tutorial/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/tutorial/index.md b/docs/docs/tutorial/index.md index 7490addeda2..aaa859d560b 100644 --- a/docs/docs/tutorial/index.md +++ b/docs/docs/tutorial/index.md @@ -41,8 +41,8 @@ components of the Cardano ecosystem, putting them in a `bin/` directory: ```shell mkdir -p bin -curl -L -O https://github.com/input-output-hk/hydra/releases/download/0.14.0/hydra-aarch64-darwin-0.14.0.zip -unzip -d bin hydra-x86_64-unknown-linux-musl.zip +curl -L -O https://github.com/input-output-hk/hydra/releases/download/0.14.0/hydra-x86_64-linux-0.14.0.zip +unzip -d bin hydra-x86_64-linux-0.14.0.zip curl -L -o - https://github.com/input-output-hk/cardano-node/releases/download/8.1.2/cardano-node-8.1.2-linux.tar.gz \ | tar xz -C bin ./cardano-node ./cardano-cli curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2331.1/mithril-2331.1-linux-x64.tar.gz \