Bitcoin Forum
May 14, 2024, 11:50:29 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 [23] 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 »
  Print  
Author Topic: [ANN] 1GH.COM - HVC / MAX / MMC / PTS / VIA Anonymous Pool ★  (Read 75097 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
itsik78
Full Member
***
Offline Offline

Activity: 462
Merit: 100



View Profile
March 09, 2014, 01:02:13 PM
 #441

Hey,
HVC question:
Trying to compile the custom minerd.
Apt-got all needed libraries and I get this:
Code:
/usr/bin/ld: minerd-heavy.o: undefined reference to symbol 'SHA256_Init@@OPENSSL_1.0.0'
/lib/x86_64-linux-gnu/libcrypto.so.1.0.0: error adding symbols: DSO missing from command line

Any idea what I need to do?

Thanks

Do you have libssl-dev installed?
Fixed it by adding these 2 lines to configure.ac:
Code:
AC_CHECK_LIB([ssl],[SSL_library_init], [], [AC_MSG_ERROR([OpenSSL library required])])
AC_CHECK_LIB([crypto],[EVP_DigestFinal_ex], [], [AC_MSG_ERROR([OpenSSL library required])])
The forum was founded in 2009 by Satoshi and Sirius. It replaced a SourceForge forum.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715687429
Hero Member
*
Offline Offline

Posts: 1715687429

View Profile Personal Message (Offline)

Ignore
1715687429
Reply with quote  #2

1715687429
Report to moderator
1715687429
Hero Member
*
Offline Offline

Posts: 1715687429

View Profile Personal Message (Offline)

Ignore
1715687429
Reply with quote  #2

1715687429
Report to moderator
reorder
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
March 09, 2014, 01:02:31 PM
 #442

Howdy

Can anyone help me, i use ubuntu 13.10 i run with no problems the AUR & MAX pools with CPU miner, but when it try 2 run for the HVC pool i can not make the fricking run....

this is what i did

mkdir heavy

git clone https://github.com/1gh/cpuminer-heavycoin.git

cd heavy
cd cpuminer-heavycoin

./autogen.sh

./configure CFLAGS "=-03"

And than Make but the make command does work here

i have all dependencies install so no probleme there
It should be ' ./configure CFLAGS="-O3" ' instead (please also note the O3 is not zero-3, but big O-3)
bitmonster
Full Member
***
Offline Offline

Activity: 129
Merit: 100


@cryptominer


View Profile WWW
March 09, 2014, 01:15:48 PM
 #443

thanks men, that was the problem dumm of me it is O not zero
bitmonster
Full Member
***
Offline Offline

Activity: 129
Merit: 100


@cryptominer


View Profile WWW
March 09, 2014, 01:20:01 PM
 #444

Now it is mining but i have only rejected ones + Warning: Your block reward vote (1024) exceeds the maxvote reported by the pool (0).

Any one with the same problem?
1gh (OP)
Jr. Member
*
Offline Offline

Activity: 46
Merit: 4


View Profile
March 09, 2014, 01:33:35 PM
 #445

Now it is mining but i have only rejected ones + Warning: Your block reward vote (1024) exceeds the maxvote reported by the pool (0).

Any one with the same problem?
Double-check that:
1. You compiled cpuminer from https://github.com/1gh/cpuminer-heavycoin
2. Connection string is:
Code:
./minerd -a heavy -v VOTE -o stratum+tcp://hvcpool.1gh.com:5333 -u WALLET -p x
1gh (OP)
Jr. Member
*
Offline Offline

Activity: 46
Merit: 4


View Profile
March 09, 2014, 01:38:25 PM
 #446

Fixed it by adding these 2 lines to configure.ac:
Code:
AC_CHECK_LIB([ssl],[SSL_library_init], [], [AC_MSG_ERROR([OpenSSL library required])])
AC_CHECK_LIB([crypto],[EVP_DigestFinal_ex], [], [AC_MSG_ERROR([OpenSSL library required])])
Thanks!
bitmonster
Full Member
***
Offline Offline

Activity: 129
Merit: 100


@cryptominer


View Profile WWW
March 09, 2014, 01:41:57 PM
 #447

by change from 1024 with the word VOTE i don't receive any warning any more, but there are not accepted blocks, 0/25 (0.00%) 35.10 khash/s (boooo) no (yaaa)

what could be the problem?
1gh (OP)
Jr. Member
*
Offline Offline

Activity: 46
Merit: 4


View Profile
March 09, 2014, 01:58:48 PM
Last edit: March 12, 2014, 08:31:55 PM by 1gh
 #448

by change from 1024 with the word VOTE i don't receive any warning any more, but there are not accepted blocks, 0/25 (0.00%) 35.10 khash/s (boooo) no (yaaa)

what could be the problem?
 Smiley VOTE is a number (0-1024).

You are using a wrong cpuminer. Delete the directory, redownload the miner from our repository and compile it again:

Code:
sudo apt-get install libcurl4-openssl-dev libtool autoconf build-essential 
git clone https://github.com/1gh/cpuminer-heavycoin 1ghminer
cd 1ghminer
./autogen.sh
./configure CFLAGS="-O3"
(or ./configure CFLAGS="-O3 -march=native" for the best performance)
make
./minerd -a heavy -v 512 -o stratum+tcp://hvcpool.1gh.com:5333 -u WALLET -p x
Wh1teKn1ght
Sr. Member
****
Offline Offline

Activity: 339
Merit: 251


View Profile
March 09, 2014, 07:23:52 PM
 #449

your custom minerd doesnt do anything when I run it...however when i run the 2.2.3 latest version of cpuminer, the minerd works fine. What's up with your custom version? even when i just try run minerd.exe i get a blank window...this doesnt happen with the 2.2.3 version...i at least get a help window that comes up with that version.
reorder
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
March 09, 2014, 08:08:23 PM
 #450

your custom minerd doesnt do anything when I run it...however when i run the 2.2.3 latest version of cpuminer, the minerd works fine. What's up with your custom version? even when i just try run minerd.exe i get a blank window...this doesnt happen with the 2.2.3 version...i at least get a help window that comes up with that version.
Do you run the right version for your system (32 or 64-bit)? Besides, antivirus may be blocking it, please try adding it to exceptions or running with antivirus disabled.
Wh1teKn1ght
Sr. Member
****
Offline Offline

Activity: 339
Merit: 251


View Profile
March 10, 2014, 03:46:43 AM
 #451

your custom minerd doesnt do anything when I run it...however when i run the 2.2.3 latest version of cpuminer, the minerd works fine. What's up with your custom version? even when i just try run minerd.exe i get a blank window...this doesnt happen with the 2.2.3 version...i at least get a help window that comes up with that version.
Do you run the right version for your system (32 or 64-bit)? Besides, antivirus may be blocking it, please try adding it to exceptions or running with antivirus disabled.

yeah, tried running the 32-bit version, didn't help with the AV disabled. thanks for the suggestion though!
Afromiffo
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
March 10, 2014, 04:23:54 PM
 #452

Im trying to mine on this pool but i get this error

Stratum connection failed: Connection timed out after 30001 milliseconds

Anyone knows why? ive tried both servers but its the same
reorder
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
March 10, 2014, 04:27:04 PM
 #453

Im trying to mine on this pool but i get this error

Stratum connection failed: Connection timed out after 30001 milliseconds

Anyone knows why? ive tried both servers but its the same
What is your miner commandline?
Afromiffo
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
March 10, 2014, 05:38:03 PM
 #454

Im trying to mine on this pool but i get this error

Stratum connection failed: Connection timed out after 30001 milliseconds

Anyone knows why? ive tried both servers but its the same
What is your miner commandline?

./minerd -a heavy -v 512 -o stratum+tcp://hvcpool.1gh.com:5333 -u MYWALLETADRESS -p x
reorder
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
March 10, 2014, 05:40:57 PM
 #455

Im trying to mine on this pool but i get this error

Stratum connection failed: Connection timed out after 30001 milliseconds

Anyone knows why? ive tried both servers but its the same
What is your miner commandline?

./minerd -a heavy -v 512 -o stratum+tcp://hvcpool.1gh.com:5333 -u MYWALLETADRESS -p x
This looks valid, can you ping the hvcpool.1gh.com? Because no connectivity problems registered on the server side lately. Please also try using hvcpool2.1gh.com if hvcpool.1gh.com does not work.
xinshiji168
Newbie
*
Offline Offline

Activity: 8
Merit: 0


View Profile
March 11, 2014, 03:56:53 AM
 #456

what's the difference -v 512 and -v 1024?
1gh (OP)
Jr. Member
*
Offline Offline

Activity: 46
Merit: 4


View Profile
March 11, 2014, 07:18:29 AM
 #457

what's the difference -v 512 and -v 1024?
It's a block reward vote.

 
Quote
How it works

Intially Heavycoin starts with a zero block reward. The very first miners will have the first opportunity to solve blocks and vote on what the first democratically selected block reward should be. The first 100 blocks (3.3 hours) will decide the starting block reward. From then on, block reward voting will continue, but the votes are counted and averaged every 3600 blocks (5 days).

Heavycoin is configured to mine and vote by default, with a default vote of 512 HVC. If you want to change your block reward vote then see How to vote and RPC voting. Otherwise, to disable voting then see How to mine. When mining is enabled, every time you mine a block your wallet will automatically cast a block reward vote. The Heavycoin network automatically averages these votes every 5 days (3600 blocks) and sets the new block reward accordingly. The block reward is the average of all 3600 votes over the previous voting period rounded to the nearest integer.
DarkAGeS
Full Member
***
Offline Offline

Activity: 219
Merit: 100


View Profile
March 12, 2014, 08:54:04 AM
 #458

can minerd for HVC be compilled and work on freebsd?
1gh (OP)
Jr. Member
*
Offline Offline

Activity: 46
Merit: 4


View Profile
March 12, 2014, 01:23:53 PM
 #459

can minerd for HVC be compilled and work on freebsd?
Yes, of course:
Code:
cd /usr/ports/ftp/curl
make install clean BATCH=yes
cd /usr/ports/devel/git
make install clean BATCH=yes
cd /usr/ports/devel/autotools
make install clean BATCH=yes
cd /usr/ports/devel/libtool
make install clean BATCH=yes

cd ~
git clone https://github.com/1gh/cpuminer-heavycoin 1gh-hvc-cpuminer
cd 1gh-hvc-cpuminer
./autogen.sh
./configure CFLAGS="-O3 -march=native"
make

./minerd -a heavy -v 512 -o stratum+tcp://hvcpool.1gh.com:5333 -u WALLET -p x
goodluck0319
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250



View Profile
March 13, 2014, 03:38:55 AM
 #460

how many coins per day for i7 4770k?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 [23] 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!