Can someone drop a link to get a 8bit masternode running on Ubuntu? Thanks a lot!
Just copy & paste.
From my experience if its a vm with not a lot ram or an old machine you should add a swap file (at least 4GB)
Once I wrote for myself the installation instructions, maybe it will come in handy.
1. Setting dependencies:
sudo apt-get install -y libminiupnpc-dev autoconf automake build-essential libssl-dev libdb++-dev libboost-all-dev libqrencode-dev
2. Installation secp256k1
cd ~&&git clone http://www.github.com/bitcoin/secp256k1&&cd secp256k1&&git checkout a1d5ae1&&./autogen.sh&&./configure&&make&&sudo make install&&cd ..
3. Installing 8bit
cd ~&&git clone https://github.com/8bit-dev/8bit&&cd 8bit/src&&cp crypto obj/crypto -rR
Most likely, there will be an error in the assembly.
Therefore, you will need to fix ~/8bit/src/rpcrawtransaction.cppsearch for this line
const CScriptID& hash = boost::get(address);It should work after changed to
const CScriptID& hash = boost::get(address);make -f makefile.unix&&strip 8bitd&&sudo cp 8bitd /usr/bin
If everything went well and without errors, then you will have a console version of the wallet.
If you need the GUI:
1. Setting dependencies:
sudo apt-get install -y qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev
2. Installing 8bit-qt
cd ~&&git clone https://github.com/8bit-dev/8bit&&cd 8bit/src&&cp crypto obj/crypto -rR&&cd ..&&qmake&&make