sudo apt-get update
sudo apt-get install gcc g++ make automake autoconf pkg-config libboost-all-dev libssl-dev
sudo apt-get install libcurl4-openssl-dev libjansson-dev
wget https://hodl.blockquarry.com/downloads/hodlminer.tar.gz
tar -zxvf hodlminer.tar.gz
cd hodlminer
./autogen.sh
./configure CFLAGS="-Ofast -march=native" CXXFLAGS="-Ofast -march=native"
make -j
sudo make install
hodlminer -a hodl -o stratum+tcp://hodl.blockquarry.com:3032 -u Weblogin.WorkerName -p WorkerPassword -t 8
Note the -t is for the number of mining threads you would like to use.. if you omit it completely (remove "-t x") the miner will auto detect the max number of threads..
made a couple changes to the above. You left out 'install' in one of your apt-get lines, and since 'sudo make install' is being called, there is no need to keep the source folder after compiling, nor is there a reason to run the binary from within the source folder as it is "installed" in a system path.