From 13313d705fcec878c0ca992a5c369fbbf30bf5c4 Mon Sep 17 00:00:00 2001 From: serinko <97586125+serinko@users.noreply.github.com> Date: Fri, 1 Sep 2023 16:13:00 +0200 Subject: [PATCH] make binaries executable --- documentation/docs/src/binaries/init-and-config.md | 9 ++++++++- documentation/operators/src/binaries/init-and-config.md | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/documentation/docs/src/binaries/init-and-config.md b/documentation/docs/src/binaries/init-and-config.md index e749662b8e..7c519a5889 100644 --- a/documentation/docs/src/binaries/init-and-config.md +++ b/documentation/docs/src/binaries/init-and-config.md @@ -1,6 +1,13 @@ # Binary Initialisation and Configuration -All Nym binaries must first be initialised with `init` before being `run`. +All Nym binaries must first be made executable and initialised with `init` before being `run`. + +To make a binary executable, open terminal in the same directory and run: + +```sh +chmod +x +# for example: chmod +x nym-mixnode +``` The `init` command is usually where you pass flags specifying configuration arguments such as the gateway you wish to communicate with, the ports you wish your binary to listen on, etc. diff --git a/documentation/operators/src/binaries/init-and-config.md b/documentation/operators/src/binaries/init-and-config.md index e749662b8e..7c519a5889 100644 --- a/documentation/operators/src/binaries/init-and-config.md +++ b/documentation/operators/src/binaries/init-and-config.md @@ -1,6 +1,13 @@ # Binary Initialisation and Configuration -All Nym binaries must first be initialised with `init` before being `run`. +All Nym binaries must first be made executable and initialised with `init` before being `run`. + +To make a binary executable, open terminal in the same directory and run: + +```sh +chmod +x +# for example: chmod +x nym-mixnode +``` The `init` command is usually where you pass flags specifying configuration arguments such as the gateway you wish to communicate with, the ports you wish your binary to listen on, etc.