Author

Topic: [ANN] Ħ [HODL] 5% Interest. No Staking Req. Term Deposits 10%. Solo Mining. - page 211. (Read 472948 times)

Vin
legendary
Activity: 1166
Merit: 1015
So do you guys mine on a pool or solo?

I'm currently mining on the pool as I had quite bad luck with solo mining :/

I like the way of mining solo.

Was lucky today and got three blocks.
hero member
Activity: 750
Merit: 500
Code:
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.
hero member
Activity: 630
Merit: 500
loving this pool I can make some HODL on my 2 year old laptop lol.  How do you get a higher hashrate with this algo like what do you need a larger hard drive or a graphics card, there aren't any asics obviously right?

Only thing now is a faster cpu.

ahh i see, i have a newer computer ill try mining on that too, the earnings with my laptop are barely worth keeping it on all night mining.
sr. member
Activity: 462
Merit: 250
So do you guys mine on a pool or solo?

I'm currently mining on the pool as I had quite bad luck with solo mining :/
newbie
Activity: 51
Merit: 0
So do you guys mine on a pool or solo?
newbie
Activity: 52
Merit: 0
Probably someone with access to a large amount of computers, a school or lab or so
Wow! It really got up!
sr. member
Activity: 490
Merit: 250
any linux familiar folks care to give tip ? i picked up source from hodl.blockquarry.com pool , unfortunately all my makes on ubuntu 14.04 ends up with following :

g++ -DHAVE_CONFIG_H -I.    -Wall -D__STDC_LIMIT_MACROS  -MT hodlminer-hodl.o -MD -MP -MF .deps/hodlminer-hodl.Tpo -c -o hodlminer-hodl.o `test -f 'hodl.cpp' || echo './'`hodl.cpp
In file included from hodl.cpp:1:0:
miner.h:10:21: fatal error: jansson.h: No such file or directory
 #include

any direction what could be issue

The libjansson-dev is missing.

The following command line will install the dependencies and build (it includes the -Ofast flasg recomended by pallas):

sudo apt-get update && sudo apt-get install gcc g++ libjansson-dev make automake autoconf libcurl4-openssl-dev pkg-config yasm libboost1.55-all-dev libssl-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


This build resulted in 10%-20% more than wallet miner.

CH



Thanx for posting this here I broke it down to lines and added a few things..

Code:
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..
sr. member
Activity: 462
Merit: 250
gpu miner still private i guess ..
not really fair..


Yeah its hard to believe no gpu miner involved...

Huge hasrate increase

Solo mining becoming harder and harder...

Still Hodling

CH

Probably someone with access to a large amount of computers, a school or lab or so
newbie
Activity: 5
Merit: 0
gpu miner still private i guess ..
not really fair..

Yeah its hard to believe no gpu miner involved...

Huge hasrate increase

Solo mining becoming harder and harder...

Still Hodling

CH
newbie
Activity: 5
Merit: 0
any linux familiar folks care to give tip ? i picked up source from hodl.blockquarry.com pool , unfortunately all my makes on ubuntu 14.04 ends up with following :

g++ -DHAVE_CONFIG_H -I.    -Wall -D__STDC_LIMIT_MACROS  -MT hodlminer-hodl.o -MD -MP -MF .deps/hodlminer-hodl.Tpo -c -o hodlminer-hodl.o `test -f 'hodl.cpp' || echo './'`hodl.cpp
In file included from hodl.cpp:1:0:
miner.h:10:21: fatal error: jansson.h: No such file or directory
 #include

any direction what could be issue

The libjansson-dev is missing.

The following command line will install the dependencies and build (it includes the -Ofast flasg recomended by pallas):

sudo apt-get update && sudo apt-get install gcc g++ libjansson-dev make automake autoconf libcurl4-openssl-dev pkg-config yasm libboost1.55-all-dev libssl-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


This build resulted in 10%-20% more than wallet miner.

CH


full member
Activity: 121
Merit: 100
gpu miner still private i guess ..
not really fair..
Yeah,it happened over and over again.
newbie
Activity: 52
Merit: 0
Probably libjansson-dev missing, or whatever it is called in Ubuntu.
member
Activity: 142
Merit: 10
any linux familiar folks care to give tip ? i picked up source from hodl.blockquarry.com pool , unfortunately all my makes on ubuntu 14.04 ends up with following :

g++ -DHAVE_CONFIG_H -I.    -Wall -D__STDC_LIMIT_MACROS  -MT hodlminer-hodl.o -MD -MP -MF .deps/hodlminer-hodl.Tpo -c -o hodlminer-hodl.o `test -f 'hodl.cpp' || echo './'`hodl.cpp
In file included from hodl.cpp:1:0:
miner.h:10:21: fatal error: jansson.h: No such file or directory
 #include

any direction what could be issue
sr. member
Activity: 473
Merit: 250
gpu miner still private i guess ..
not really fair..
hero member
Activity: 756
Merit: 501
Wow this is the first time that a CPU miner is slower than the wallet miner.  Grin
was 100h/s became 140h/s
Some performance increase indeed (20% in my case, AMD FX8320E). When I wrote the post, I hadn't tested the miner yet, only read the comments speaking of 25% less hashrate.
legendary
Activity: 2590
Merit: 1022
Leading Crypto Sports Betting & Casino Platform
To the author : How would you guarantee this project of yours will not be abandoned?  As it was with Lottoshares.

Is that even a good thing? If the coin is really popular and successful then I doubt he will abandon it (and if he does someone else will take over). But if a coin doesn't really get anywhere in terms of adoption, does it really make sense for the developer to stick with it forever? Why not learn from the experiment and move on to something else that might succeed?

In fact a good test of merit for a coin is whether others take over when the original developer leaves, as happened with Bitcoin. Apparently that didn't happen with Lottoshares (not really familiar with it).

i don't agree, why not improving this instead of going with another copy paste, just for a new quick buck, i'm not saying the dev is is greedy or anything, but this was the common thing where many dev have done in the past and even today
legendary
Activity: 1470
Merit: 1030
To the author : How would you guarantee this project of yours will not be abandoned?  As it was with Lottoshares.

Is that even a good thing? If the coin is really popular and successful then I doubt he will abandon it (and if he does someone else will take over). But if a coin doesn't really get anywhere in terms of adoption, does it really make sense for the developer to stick with it forever? Why not learn from the experiment and move on to something else that might succeed?

In fact a good test of merit for a coin is whether others take over when the original developer leaves, as happened with Bitcoin. Apparently that didn't happen with Lottoshares (not really familiar with it).

Thanks Smooth - yeah Lottoshares was incomplete at launch and turned out to be technically infeasible due the difficulty of distributed random number generation. Personally, I think it is better to call it when a coin dies, rather than hanging around keeping a corpse warm as so many do. Happily the technical issues of HOdlcoin are already ironed out so there's no possibility of it going the same way.
hero member
Activity: 865
Merit: 1006
Thanks!!!

hodlcoin-qt work fine...
hero member
Activity: 750
Merit: 500
Hello I'm interest in this coin.
I have ubuntu 14.04 64, i test and check diferents webpages and forums to install and start the wallet, but ... I do not get it

Can anybody help me?

Thanks

I'm not sure what there is that you aren't understanding.

1. download linux 64bit binary package from release page (https://github.com/HOdlcoin/HOdlcoin/releases/tag/v1.0.0)
2. unarchive said package
3. run either hodlcoin-qt or hodlcoind (located in the 'bin' subfolder of the archive you just extracted)
hero member
Activity: 865
Merit: 1006
Hello I'm interest in this coin.
I have ubuntu 14.04 64, i test and check diferents webpages and forums to install and start the wallet, but ... I do not get it

Can anybody help me?

Thanks
Jump to: