if u buy this , i need install , but it in linux , i dun know , would be great if the install , come in .exe format, so all i have to do .pop in sdcard and run exe
You should be able to install by using the following in terminal:
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libdb5.1-dev libdb5.1++-dev libminiupnpc-dev libqrencode-dev
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler
I think that is all the dependencies, someone let me know if I missed one. This bitcoin document is helpful
https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.mdThen to build the daemon:
git clone https://github.com/hyperstake/hyperstake
cd hyperstake
./autogen.sh
./configure --with-incompatible-bdb --with-gui=no
make
This will go through the build process, and leave you with hyperstaked in /hyperstake/src
to run the daemon:
./src/hyperstaked &
To build the QT version, you would change it to --with-gui=qt5 and it should leave the hyperstake-qt app in /src/qt
I will update our installation page with these details.