Linux build guide
sudo apt-get update
sudo apt-get install checkinstall subversion git git-core build-essential
sudo apt-get install libssl-dev libminiupnpc-dev
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
sudo apt-get install build-essential libboost-all-dev automake libtool autoconf
sudo apt-get install pkg-config
sudo apt-get install git
git clone https://github.com/FreeTrade/HOdlcoin
cd HOdlcoin
./autogen.sh && ./configure --without-gui
make
make install
mkdir -p ~/.hodlcoin/
echo -e "rpcuser=rpc\nrpcpassword=1234\nserver=1\ndaemon=1\ntxindex=1" > ~/.hodlcoin/hodlcoin.conf
This will start the wallet mining
hodlcoind -gen=1 -minermemory=1 -genproclimit=8 -miningaddress="address"
minermemory= the amount of Ram in 1gb increments (1,2,3)
genproclimit= the number of threads per 1gb of ram from "minermemory" (this number must be a power of 2 so 2,4,8,16,)
miningaddress="address" this is the address all your mined blocks will be sent to (example "HodlDsNuts57MFNiN8CMrMjC2CYAy8pwi9")
This will shut down the wallet
hodlcoin-cli stop
OK, first off this did not work for me on Ubuntu 14.04. What am I missing? I deleted the without gui and still didn't work. Is it possible to download WIN wallet and mining using Wine? Thanks.
GUI has further library dependencies
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler
I am not a Linux user so have not idea what this says. can a person make a guide for idiots. start to end, 1,2,3,steps for idiot linix usiers. on ubuntu 14.04.
So if your not a Linux user is there a reason you are using Linux?
I got a computer bi chance that has Ubuntu 14.04 on it. I want to mine, but are not literate on linux.
Well welcome to the party!
Build instructions can be found in github. These can be a little confusing so here is a basic premise of the order of what you need to do to cook a linux qt wallet.
1. Get dependencies. These are damn near 'universal' for all coins you could ever want to compile so chances are you will only have to do this once.
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config libssl-dev libboost-all-dev libminiupnpc-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler git libqrencode-dev libdb4.8-dev libdb4.8++-dev
2. Get the source
git clone http://github.com/hodlcoin/hodlcoin
3. Cook the source
cd hodlcoin
./autogen.sh
./configure --with-gui=qt5 --enable-upnp-default
make
*protip make can be ran multithreaded to speed up the compile. So if you have a pc with a 4 core processor, you could run:
make -j4
This will produce hodlcoin-qt in /src/qt
for sake of example...
4. launch
cd src/qt
./hodlcoin-qt
**disclaimer** from memory and might need slight tweaking