can anyone point me to a setup guide for linux perhaps?
compiling and stuff.....
Ok just a quick guide here.. I will have the nicer one finished tomorrow..
sudo apt-get update
sudo apt-get install checkinstall subversion git git-core build-essential
sudo apt-get install libssl-dev libdb++-dev libminiupnpc-dev
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 --with-incompatible-bdb --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
bitcoind -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