How to configure a computer on the extraction of zcash for?Please remove the video!

Please make a video on how to properly configure the server for production zcash for or enter the article with the most correct description. I bad speak English and linux, so I would be very grateful for your help. I tried all of the article but gives an error after compilation. And it is not clear how to create a wallet…HELP with instructions please! :sweat:

1 Like

How much memory do you have?

I have 8 gigabytes of RAM. 2 GB graphics card HD 7870. 8300 AMD FX

Does the compilation complete successfully?

To install and get running:

sudo apt-get upgrade

sudo apt-get update

sudo apt-get install
build-essential pkg-config libgtest-dev libc6-dev m4
g+±multilib autoconf libtool ncurses-dev unzip git python
zlib1g-dev wget bsdmainutils automake

git clone GitHub - zcash/zcash: Zcash - Internet Money
cd zcash/
git checkout v1.0.0-beta1

./zcutil/fetch-params.sh

./zcutil/build.sh -j$(nproc)

./qa/zcash/full-test-suite.sh

mkdir -p ~/.zcash

nano ~/.zcash/zcash.conf

testnet=1
addnode=betatestnet.z.cash
rpcuser=username
rpcpassword=password
gen=1
genproclimit=number of cores

ctrl-x
y - enter
enter

Commands For Use :
nano ~/.zcash/zcash.conf (configuration file)
~/zcash/./src/zcashd -daemon (start wallet)
~/zcash/./src/zcash-cli getinfo (check wallet info, blockchain etc)
~/zcash/./src/zcash-cli keypoolrefill 10000 (create 10000 addresses for mining default:100)
time ~/zcash/src/zcash-cli zcbenchmark solveequihash 10 (10 benchmark runs)
~/zcash/./src/zcash-cli listtransactions (list mined coins)
~/zcash/./src/zcash-cli stop (stop miner)
~/zcash/./src/zcash-cli zcrawkeygen - to generate anon wallet (transparent coins to anon coins)
~/zcash/./src/zcash-cli z_listaddresses (list anon addresses)
~/zcash/./src/zcash-cli listunspent (list unspent)
~/zcash/./src/zcash-cli zcrawkeygen (create anon addie)
~/zcash/./src/zcash-cli zcrawjoinsplit “$(~/zcash/./src/zcash-cli createrawtransaction ‘[{“txid”:“TransparentAddieofBlock”,“vout”:0}]’ ‘{}’)” ‘{}’ “{"AnonAddressYouWantToSendTo”:1}" 1 0
~/zcash/./src/zcash-cli signrawtransaction “$RAWTXN_FROM_ZCRAWJOINSPLIT”
~/zcash/./src/zcash-cli sendrawtransaction “$RAWTXN_FROM_SIGNRAWTRANSACTION”
echo ~/zcash/./src/zcash-cli listunspent | grep txid | wc -l blocks (check total blocks)

1 Like

Yes, the compilation completed successfully. But when prescribed $ ~/zcash for/./src/zcashd -daemon it says error

Thanks for this guide, now I will try - trolloniex Thank you! It work!