Skip to content

Instantly share code, notes, and snippets.

@bradoyler
Last active May 2, 2018 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradoyler/5a0b651ab84639e0f368fcf15e7f6289 to your computer and use it in GitHub Desktop.
Save bradoyler/5a0b651ab84639e0f368fcf15e7f6289 to your computer and use it in GitHub Desktop.
ZCash (ZEC ) install Ubuntu 16

Command-line install instructions:

sudo apt-get install apt-transport-https
wget -qO - https://z.cash/gpg-pubkeys/zcash.asc | sudo apt-key add -
sudo echo "deb https://apt.z.cash jessie main" | sudo tee /etc/apt/sources.list.d/zcash.list
sudo apt-get update
sudo apt-get install zcash
zcash-fetch-params
mkdir ~/.zcash
cd ~/.zcash
echo "rpcuser=username" > zcash.conf
echo "rpcpassword=`head -c 32 /dev/urandom | base64`" >> zcash.conf
echo "gen=1" >> zcash.conf
zcashd

screen shot 2018-05-02 at 9 49 53 am

Explainer video: https://www.youtube.com/watch?v=5ahQZZYcntQ

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment