From ea21cee7a5f967016b5fc96f28c5e9a41ff124ad Mon Sep 17 00:00:00 2001 From: Julien Bouteloup Date: Sun, 13 Jan 2019 19:15:20 +0100 Subject: [PATCH 1/2] Add missing step for Using `systemd` service file Copy Parity release from target folder to bin, write `cp -R ./target/release/parity /usr/bin/` to match `ExecStart=/usr/bin/parity --config /etc/parity/config.toml` from `https://github.com/paritytech/parity-ethereum/blob/master/scripts/parity.service` --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index efb2d285185..b976f6104e0 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,8 @@ To start Parity Ethereum as a regular user using `systemd` init: 1. Copy `./scripts/parity.service` to your `systemd` user directory (usually `~/.config/systemd/user`). -2. To configure Parity Ethereum, write a `/etc/parity/config.toml` config file, see [Configuring Parity Ethereum](https://paritytech.github.io/wiki/Configuring-Parity) for details. +2. Copy Parity release from target folder to bin, write `cp -R ./target/release/parity /usr/bin/` +3. To configure Parity Ethereum, write a `/etc/parity/config.toml` config file, see [Configuring Parity Ethereum](https://paritytech.github.io/wiki/Configuring-Parity) for details. ## Parity Ethereum toolchain From 0d09be1527fc4c1113f2f7c1dc1642ec193faf85 Mon Sep 17 00:00:00 2001 From: Julien Bouteloup Date: Mon, 14 Jan 2019 15:58:11 +0100 Subject: [PATCH 2/2] Copy release to bin folder using sudo install `sudo install ./target/release/parity /usr/bin/parity` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b976f6104e0..1c0302535f2 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ To start Parity Ethereum as a regular user using `systemd` init: 1. Copy `./scripts/parity.service` to your `systemd` user directory (usually `~/.config/systemd/user`). -2. Copy Parity release from target folder to bin, write `cp -R ./target/release/parity /usr/bin/` +2. Copy release to bin folder, write `sudo install ./target/release/parity /usr/bin/parity` 3. To configure Parity Ethereum, write a `/etc/parity/config.toml` config file, see [Configuring Parity Ethereum](https://paritytech.github.io/wiki/Configuring-Parity) for details. ## Parity Ethereum toolchain