From 563f834c964148d5a481162f4e8b9fec51c86c6e Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sat, 23 Jun 2018 15:29:22 -0700 Subject: [PATCH] Document how to update the snap --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a955f46c8..6994ac345 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ multinode variation, you'll see TPS measurements for each validator node as well Linux Snap --- -A Linux Solana [Snap](https://snapcraft.io/) is available, which can be used to +A Linux [Snap](https://snapcraft.io/) is available, which can be used to easily get Solana running on supported Linux systems without building anything from source. The `edge` Snap channel is updated daily with the latest development from the `master` branch. To install: @@ -145,6 +145,12 @@ $ sudo snap install solana --edge --devmode Once installed the usual Solana programs will be available as `solona.*` instead of `solana-*`. For example, `solana.fullnode` instead of `solana-fullnode`. +Update to the latest version at any time with +```bash +$ snap info solana +$ sudo snap refresh solana --devmode +``` + Developing ===