Post
Topic
Board Announcements (Altcoins)
Merits 1 from 1 user
Re: [ANN][SUB1X| 🚀The Lowest Supply Masternode Coin🚀 | ZEROCOIN | 1000%+ APR
by
Sellingaccs
on 18/03/2018, 06:06:18 UTC
⭐ Merited by HCP (1)
I've received my Raspberry Pi 3B yesterday and I want to run the wallet to stake. A guide would be super helpful Smiley

System info:

Code:
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 9.4 (stretch)
Release: 9.4
Codename: stretch
Thanks!

Sure thing. Im not part of this project since the OP is highly unresponsive and not answering any messages or questions but i will try my best.

First of all you need to change the size of swap, because the compilation needs alot of memory because the code is on C++.
Code:
sudo apt-get update && sudo apt-get install nano

Then you will have to edit the swap file:
Code:
sudo nano /etc/dphys-swapfile

Then find line that says "CONF_SWAPSIZE=100" and change the value to "1000". Then reboot raspberry pie after pressing CTRL + O to save the edited file.

After that you will need to install some certain packages to compile. Run the following commands line at the time(if they give out any errors, feel free to PM if you cannot get through them):

Code:
sudo apt-get update
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev
sudo apt-get install libdb++-dev libdb-dev libminiupnpc-dev
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler libqrencode-dev

Then we need to clone the repository and compile:
Code:
git clone https://github.com/SuB1X-Coin/zSub1x && cd zSub1x
./autogen.sh
./configure --with-incompatible-bdb
make -j3

That process should do the compilation fairly well, although i don't own a raspi so i need your feedback to perfect up the guide to get pass by without any problems Tongue

Edit: the zsub1x-qt should be built under src/qt on the zsub1x folder.