how do I run the getinfo command? and the mining command? thanks
Into conf file: gen=1
or console: setgenerate true
example:
getinfo
getpeerinfo
which folder do you type the command in? is it ./hexxcoind-cli getinfo? thanks
Guess you are a linux user?
First, compile the hexx GUI wallet.
Seems you try to use daemon(hexxd)?
There is no folder or file named as hexxcoind-cli
Installation folder is .hexx
Sourcefile folder is hexxcoin
daemon is hexxd
Gui wallet is named as hexx <-- this is what you need to use
conf file is hexx.conf at folder .hexx
Terminal: "." used to enter hidden folder, cd .hexx
Desktop: Press CTRL+H and all hidden folders will appear
GUI:sudo apt-get update && sudo apt-get upgrade
sudo apt-get install git build-essential libssl-dev libdb5.3++-dev libminiupnpc-dev libboost-all-dev qt4-qmake libqt4-dev
git clone
https://github.com/hexxcointakeover/hexxcoincd hexxcoin && qmake -qt=qt4 "RELEASE=1" Hexxcoin-qt.pro && make
Then simply double click the icon!
Wait until full synch.
Open console.
Type: setgenerate true
Open your debug.log file to see lines like:
Running HexxcointMiner with 1 transactions in block (188 bytes)
hashmeter 54.071180 hash/s
Daemon:sudo apt-get update && sudo apt-get upgrade
sudo apt-get install git build-essential libssl-dev libdb5.3++-dev libminiupnpc-dev libboost-all-dev
git clone
https://github.com/hexxcointakeover/hexxcoincd hexxcoin/src && make -f makefile.unix
sudo strip hexxd && sudo cp ~/hexxcoin/src/hexxd /usr/bin
mkdir .hexx <-- we create hidden hexx folder if clean install
ls -a <-- to view hidden folders
rm -rf .typo <-- if needed, to delete folder or file
cd .hexx
touch hexx.conf <--this creates conf file, use nano to edit lines into it
cd ~/
hexxd
Now your daemon is downloading blocks.
hexxd getinfo <-- shows basic info
hexxd getpeerinfo <-- shows peer info
hexxd stop <-- to stop daemon
hexxd setgenerate true <-- start mining
hexxd setgenerate false <-- stop mining