Hi. I'm a newbie and I have one question. Can this coin be mined with VPS with Ubuntu via Putty? If yes, can someone complile a tutorial on how to? thanks
Yes. If you use pool you can compile miner like this.
sudo apt-get install git git-core
sudo apt-get install build-essential pkg-config libcurl4-openssl-dev libssl-dev
sudo apt-get install automake
git clone https://github.com/Optiminer/hodlminer-wolf
cd hodlminer-wolf
./autogen.sh
./configure CFLAGS="-O3"
make
Then run miner
nice ./hodlminer -o stratum+tcp://coinspool.cu.cc:3042 -u -p x -q
nice lowers the priority so Ubuntu gives CPU time for higher priority processes. The same miner can be used for mining hodlcoins.
Edit:
Miner for Windows 64 bit. Miner supports AES-NI and AVX2. If CPU doesn't support AES-NI or AVX2 miner will crash.
https://github.com/madzebra/hodlminer-binary/Many miner versions for different CPUS. Unfortunately these version are quite slow.
https://github.com/nicehash/hodlminer-wolf/releasesIn Windows you can start miner with lower priority by creating a .bat file and adding a line like this
start "Hodlminer" /BELOWNORMAL hodlminer.exe -o stratum+tcp://coinspool.cu.cc:3042 -u -p x -q
Valid priority class values are /low, /normal, /high, /realtime, /abovenormal and /belownormal.