Author

Topic: [XPM] [ANN] Primecoin High Performance | HP14 released! - page 111. (Read 397616 times)

member
Activity: 217
Merit: 10
No matter waht version, even official, i try, i get this



Program: primexoin-qt.exe
File: src/main.cpp
Line: 1719

Expression: pfork!= NULL



Whats wrong? Already re-installed.
sr. member
Activity: 392
Merit: 250
I can't find the command to change the sievesize, on a Linux VPS
I tried : primecoind -sievesize 2000000
 But it doesn't work.
newbie
Activity: 37
Merit: 0
I go to the /usr/local/bin location so that I don't have to type /usr/local/bin/primecoind whenever I want to do another command.  Just simply primecoind command.

That should not work. The current directory you are in is deliberately not on PATH for security reasons, so being there should force you to use ./primecoind command, the ./ meaning in the current directory.

So most likely /usr/local/bin is on your path, it normally is, and that means you don't have to be there, from anywhere you should be able to do primecoind command and it will look on the PATH and find a copy of it in /usr/local/bin and if not there then try /bin and /usr/bin, heck it might even try ~/.local/bin

So you should not have to go there, or, if you do have to, then you should have to use the ./ prefix to force it to look in the current directory.

-MarkM-


I guess I'm super special.  I just "cd /usr/local/bin" and do "primecoind command" and it does work.  Never had the need to do a ./ prefix.

I'm just too lazy to type the entire directory out when the only thing that concerns me in this VM is just primecoind and it works fine.

In any case, thanks for all you guys help in figuring out my original issue even though all I needed to do was reboot the VM for some reason.
sr. member
Activity: 520
Merit: 253
555
Also, I didn't even know they had enabled double dash commandline switches like --daemon, does that actually work nowadays? Back in the day all those were single-dash, like -daemon.

Never tried single dash to be honest.  I was just going by digitalocean's guide which has the double dash.

This is going way off topic, but as a somewhat oldskool Linux/unix geek it's interesting to see how cryptocurrencies make people learn about real computingTM Wink

GNU style options always have long and short forms, distinguished by the dashes. For example, you'd have both --daemon and -d for the same option. Not everything follows this, though, so --daemon might be completely different from -daemon.
legendary
Activity: 2940
Merit: 1090
I go to the /usr/local/bin location so that I don't have to type /usr/local/bin/primecoind whenever I want to do another command.  Just simply primecoind command.

That should not work. The current directory you are in is deliberately not on PATH for security reasons, so being there should force you to use ./primecoind command, the ./ meaning in the current directory.

So most likely /usr/local/bin is on your path, it normally is, and that means you don't have to be there, from anywhere you should be able to do primecoind command and it will look on the PATH and find a copy of it in /usr/local/bin and if not there then try /bin and /usr/bin, heck it might even try ~/.local/bin

So you should not have to go there, or, if you do have to, then you should have to use the ./ prefix to force it to look in the current directory.

-MarkM-
sr. member
Activity: 840
Merit: 251
So far, my core 2 duo processor is getting 3-400 PPS compared to 50ish it was getting originally. Of course I still haven't found a block yet... I'm sure global PPS is way up there now. I'll leave it running for 24 hours to see if it's worth it.

Short answer: Use a pool: http://ypool.net/news.php

Does the pool worx fine?
I know its hard to do pool with primes, and i hear not match get mined @pool


Just discovered and started using the pool.. Looks to be really slow at finding blocks right now, even with 72 workers.
newbie
Activity: 37
Merit: 0
The normal steps I learned to do get primecoin going is:
Code:
git clone https://github.com/mikaelh2/primecoin
cd primecoin/src
make -f makefile.unix
mv primecoind /usr/local/bin
cd /usr/local/bin
primecoind --daemon
watch 'primecoind getmininginfo'

If I tried to do just "primecoind setgenerate true -1" instead of "primecoind --daemon", it says something about couldn't connect to server.

Presumably /usr/local/bin is on your path, because linux normally does not include its current directrory in its path so normally you would have to do ./programname when you go to the program's location to run it. So, since primecoind works, there is no need to cd /usr/local/bin

Also, I didn't even know they had enabled double dash commandline switches like --daemon, does that actually work nowadays? Back in the day all those were single-dash, like -daemon.

So maybe try
Code:
cd primecoin/src
make -f makefile.unix
mv primecoind /usr/local/bin
nice /usr/local/bin/primecoind -daemon -gen=1
watch '/usr/local/bin/primecoind getmininginfo'

-MarkM-


Never tried single dash to be honest.  I was just going by digitalocean's guide which has the double dash.
I didn't include the -gen=1 because it's in my config file already.

I go to the /usr/local/bin location so that I don't have to type /usr/local/bin/primecoind whenever I want to do another command.  Just simply primecoind command.

I finally got "nice" to work nice for me. But it's not being nice to me.  PPS is low and the GPU miner still suffers at 580 something.  Cores usage are all over the place instead of a steady 100%. I'm going back to using 7 cores instead which still gives me only a 500 PPS loss and a drop of only 20khps on the GPU miner.
sr. member
Activity: 363
Merit: 250
changed seive size to 2m restarted, boom! hit a block instantly. probably just dumb luck.
full member
Activity: 224
Merit: 100
So far, my core 2 duo processor is getting 3-400 PPS compared to 50ish it was getting originally. Of course I still haven't found a block yet... I'm sure global PPS is way up there now. I'll leave it running for 24 hours to see if it's worth it.

Short answer: Use a pool: http://ypool.net/news.php


BS

^^ ... virustotal.com says?

Common sense says?  Roll Eyes
sr. member
Activity: 371
Merit: 250
So far, my core 2 duo processor is getting 3-400 PPS compared to 50ish it was getting originally. Of course I still haven't found a block yet... I'm sure global PPS is way up there now. I'll leave it running for 24 hours to see if it's worth it.

Short answer: Use a pool: http://ypool.net/news.php


BS

^^ ... virustotal.com says?
hero member
Activity: 820
Merit: 1000
What sieve size is everyone using?

mikaelh said earlier that he got significantly more blocks (on the testnet) with a sieve size of 2 million instead of 1 million.

1M, switching to 2M now.
You need to test it out for yourself as its hardware dependent.  I have mixed results but have found that somewhere between 1-3m seems to best
newbie
Activity: 8
Merit: 0
What sieve size is everyone using?

mikaelh said earlier that he got significantly more blocks (on the testnet) with a sieve size of 2 million instead of 1 million.
legendary
Activity: 1899
Merit: 1024
So far, my core 2 duo processor is getting 3-400 PPS compared to 50ish it was getting originally. Of course I still haven't found a block yet... I'm sure global PPS is way up there now. I'll leave it running for 24 hours to see if it's worth it.

Short answer: Use a pool: http://ypool.net/news.php

Does the pool worx fine?
I know its hard to do pool with primes, and i hear not match get mined @pool
legendary
Activity: 2940
Merit: 1090
The normal steps I learned to do get primecoin going is:
Code:
git clone https://github.com/mikaelh2/primecoin
cd primecoin/src
make -f makefile.unix
mv primecoind /usr/local/bin
cd /usr/local/bin
primecoind --daemon
watch 'primecoind getmininginfo'

If I tried to do just "primecoind setgenerate true -1" instead of "primecoind --daemon", it says something about couldn't connect to server.

Presumably /usr/local/bin is on your path, because linux normally does not include its current directrory in its path so normally you would have to do ./programname when you go to the program's location to run it. So, since primecoind works, there is no need to cd /usr/local/bin

Also, I didn't even know they had enabled double dash commandline switches like --daemon, does that actually work nowadays? Back in the day all those were single-dash, like -daemon.

So maybe try
Code:
cd primecoin/src
make -f makefile.unix
mv primecoind /usr/local/bin
nice /usr/local/bin/primecoind -daemon -gen=1
watch '/usr/local/bin/primecoind getmininginfo'

-MarkM-
member
Activity: 182
Merit: 10
So far, my core 2 duo processor is getting 3-400 PPS compared to 50ish it was getting originally. Of course I still haven't found a block yet... I'm sure global PPS is way up there now. I'll leave it running for 24 hours to see if it's worth it.

Short answer: Use a pool: http://ypool.net/news.php


BS

Are you worried people will get a leg up on your 100 servers?
full member
Activity: 128
Merit: 100
Finally found a block!

First one since the 9th...before everything got crazy.

Got it with hp3 on an i5 machine.

I've been trying to get a build set up on DO, but I'm a complete noob with Linux and keep running into errors along the way. So....I've now installed Ubuntu in a virtual machine and trying to figure it out before wasting any more $$ trying to learn on VPS.

Sure wish this build was available on the 7th when I first started Prime. Of course, I also wish I had taken the time to learn Linux way before block rewards dropped to 12. Block rewards of 20 sure were nice while they lasted.

Thanks much for all of your work on this.

Ups, check private message :p

Thanks for the (quite expensive) offer.

However, I'm thinking it would be much greater benefit for me if I figure this one out on my own. The whole..."give a man a fish..." thing, ya know.  Wink

legendary
Activity: 1078
Merit: 1001
So far, my core 2 duo processor is getting 3-400 PPS compared to 50ish it was getting originally. Of course I still haven't found a block yet... I'm sure global PPS is way up there now. I'll leave it running for 24 hours to see if it's worth it.

Short answer: Use a pool: http://ypool.net/news.php


BS
member
Activity: 182
Merit: 10
So far, my core 2 duo processor is getting 3-400 PPS compared to 50ish it was getting originally. Of course I still haven't found a block yet... I'm sure global PPS is way up there now. I'll leave it running for 24 hours to see if it's worth it.

Short answer: Use a pool: http://ypool.net/news.php
sr. member
Activity: 840
Merit: 251
So far, my core 2 duo processor is getting 3-400 PPS compared to 50ish it was getting originally. Of course I still haven't found a block yet... I'm sure global PPS is way up there now. I'll leave it running for 24 hours to see if it's worth it.
sr. member
Activity: 246
Merit: 250
My spoon is too big!
The windows binary primecoin-qt hp4 is running at roughly half the pps of hp3 on my nehalem i7. Ideas?
Jump to: