From 9a4820f0bef1276d7e03aba54e8eda813816a867 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 8 Oct 2020 11:58:27 -0400 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index c87f2bf..e9fbf19 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,19 @@ This document will help you install and maintain a Hush Full Node. It is mainly geared towards exchanges and mining pools, but will be useful to any service provider adding Hush, such as a Discord Tipbot service provider like https://tip.cc + +# Installing Hush from source + +On Ubuntu/Linux systems, you can install Hush with these commands: + +``` +# install build depedencies +sudo apt-get install build-essential pkg-config libc6-dev m4 g++-multilib \ + autoconf libtool ncurses-dev unzip git python zlib1g-dev wget \ + bsdmainutils automake curl unzip nano libsodium-dev +git clone https://github.com/MyHush/hush3.git +cd hush3 +./build.sh -j4 +``` + +