[SUPPORT] beeeeer.org - tech support

Hop into the src folder and type: sudo make -f makefile.unix[/quote]
or read build instructions https://github.com/donSchoe/xolominer/blob/master/doc/build-unix.md

Does it matter which one of the 3 servers I connect to?

Is it better to connect to one with more workers and more blocks found?

Not sure about the new miner. I’ve been mining at ypool since beeeer and rpool went down. jhprimeminer has been consistently finding 7 and 8 chains on my miners. I just ran the new beeeeer miner for 2 and a half hours on multiple miners and all it’s finding is a relatively smaller amount of 7 chains. I fired jhprimeminer back up on one computer and within 10 minutes it found 3 7 chains and 1 8 chain. I know there’s a luck component here but I’m still concerned.

That’s because that miner is tweaked for more lower chain finding, probably…not towards actually finding blocks.

I don’t think that’s true anymore, especially of the more recent releases by Aero and rdebourbon. ypool also actually requires that you set your sieve target depth to at least 9 (or whatever the current diff is) or else they will reject your shares.

[quote=“xolokram, post:1127, topic:342”]@jhprimeminer: do we have any reliable sources on the performance?
btw. i’m thinking of implementing jhprimeminer’s xpt protocol for beeeeer, too — but this will take some time.[/quote]

Thanks for following up on this. I pointed my computers back at beeeeer partially to run a longer sample and mostly because I love beeeeer so much. With -TargetInitialLength=9, I seem to be finding more 7 chains but still haven’t hit an 8 chain in over 90 minutes. The nice thing is that all of the chains have been accepted shares so the reject rate seems greatly improved.

[quote=“xolokram, post:1127, topic:342”]@jhprimeminer: do we have any reliable sources on the performance?
btw. i’m thinking of implementing jhprimeminer’s xpt protocol for beeeeer, too — but this will take some time.

  • xolokram[/quote]

Thanks a lot for getting the the pool back Xolokram. Its really appreciated.

I noticed I was able to get twice(2) the primes/s with windows with jhprimeminer when i used it for both windows and linux (via wine). Do you think using the getblocktemplate would account for the difference in performance ?

aaaah, it’s this topic again. while jhPrimeminer counts every iteration of their prime search as “prime per second”, mikaelh’s & thus my miner counts only iterations that actually found at least one prime.

see…

line

primeStats.primeChainsFound++;

here: https://github.com/rdebourbon/jhPrimeminer/blob/master/src/primecoinMiner/prime.cpp#L932

&

lines

if(TargetGetLength(nProbableChainLength) >= 1) nPrimesHit++;
here: https://github.com/thbaumbach/primecoin/blob/master/src/prime.cpp#L802

that means: rdebourbon’s PPS & mikaelh’s PPS is not the same measure! we had this “issue” already a few weeks ago.
and the fact that my counter doesn’t increment if a submittable share has been found. i should change that :slight_smile: <-- TODO for xolokram

  • xolokram

ps. there’s also a “nPrimesHit++;” line in rdebourbon’s code, but that variable is never used, they use the “primeChainsFound” variable for the stats…
pps. jh00/rdebourbon/etc.pp., correct me if i’m wrong - i’ve not fully checked the code or tested it

@xolokram

What cpu instruction does your miner use? SSE 1,2,3,4? AVX? (-that would be nice since I’ve got Intel i5)

Just wondering because the miner crashes on my old computers without any SSE instructions…

Just curious. :smiley:

[quote=“xolokram, post:199, topic:358”]argh this damn chrono lib

i hope i don’t confuse the issue.

either you install the latest boost version manual to your linux system.
or you remove the following line from the makefile.unix & compile again:

   -l boost_chrono$(BOOST_LIB_SUFFIX) \
  • xolokram[/quote]
    I have same issue.
    Removing this line have affect on miner performance?

nope @Grekk

-xolokram

Hey Xolo I’m trying to get this installed on a 256mb machine but I’m getting this error

root@localhost:~# cd /usr/local/src/primecoin/src
root@localhost:/usr/local/src/primecoin/src# make -f makefile.unix
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/usr/local/src/primecoin/src -I/usr/local/src/primecoin/src/obj -DUSE_IPV6=1 -I/usr/local/src/primecoin/src/leveldb/include -I/usr/local/src/primecoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.7/README.Bugs> for instructions.
make: *** [obj/alert.o] Error 4

Sometimes it just crashes. I tried what you put early about low memory machines but got the same results. Anything new to try since then?

Edit: On Ubuntu Server 12.10 btw

[quote=“maybe_just_one, post:212, topic:358”]Hey Xolo I’m trying to get this installed on a 256mb machine but I’m getting this error

root@localhost:~# cd /usr/local/src/primecoin/src
root@localhost:/usr/local/src/primecoin/src# make -f makefile.unix
g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/usr/local/src/primecoin/src -I/usr/local/src/primecoin/src/obj -DUSE_IPV6=1 -I/usr/local/src/primecoin/src/leveldb/include -I/usr/local/src/primecoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.7/README.Bugs> for instructions.
make: *** [obj/alert.o] Error 4

Sometimes it just crashes. I tried what you put early about low memory machines but got the same results. Anything new to try since then?

Edit: On Ubuntu Server 12.10 btw[/quote]

This is a known problem with low RAM available. Answer can be found here: PPCoin: How to Compile on Ubuntu 12.04

Let me quote it:

Q. I receive internal compiler error: Killed (program cc1plus) Code:

g++: internal compiler error: Killed (program cc1plus) Please submit a full bug report, with preprocessed source if appropriate. See <file:///usr/share/doc/gcc-4.6/README.Bugs> for instructions.

A. Type “dmesg”,
Code:

[ 1377.575785] Out of memory: Kill process 12305 (cc1plus) score 905 or sacrifice child [ 1377.575800] Killed process 12305 (cc1plus) total-vm:579928kB, anon-rss:546144kB, file-rss:0kB

If you see output like this, your machine does not have enough memory to compile. You can fix this by adding more swap. To add a 1gb swap file, in /swapfile:

Code:

sudo dd if=/dev/zero of=/swapfile bs=64M count=16 sudo mkswap /swapfile sudo swapon /swapfile

After compiling, you may wish to

Code:

sudo swapoff /swapfile sudo rm /swapfile

I had the same issue with low available memory. Adding swap fixed this.

Using the new miner on my mum’s laptop doesn’t work.

It just keeps saying:

connecting to 176.34.128.129:1337

I have disabled the firewall and tried the other pool addresses, but no luck.

Any suggestions would be appreciated :slight_smile:

Does anyone know of a guide to getting this to run on bamt?

bamt is based on debian, just use this guide: https://github.com/donSchoe/xolominer/blob/master/doc/build-unix.md#dependency-build-instructions-ubuntu--debian

guys can some one help me out im having issue i can install it on ubuntu 12.04 dont know where to start and if i try to use wine i gte errors please help me out can some one make a quick video please

I got it working using Ubuntu Server 12.04.3 LTS by doing the following:

sudo apt-get install make
sudo apt-get install git
sudo apt-get install g++
sudo apt-get install libboost-all-dev
sudo apt-get install libdb++-dev
sudo apt-get install build-essential
sudo apt-get install libgmp-dev
sudo apt-get install libssl-dev

git clone https://github.com/thbaumbach/primecoin.git

cd primecoin
cd src

make -f makefile.unix primeminer

primeminer -pooluser=[xpm-payout-address] -poolip=[choose-from-first-post] -poolport=1337 -genproclimit=[threads-to-use] -poolpassword=[some-random-password-for-protection*]

How do the miner stats work. Is chains/d an overall stat or per core?

I got it working using Ubuntu Server 12.04.3 LTS by doing the following:

[code]
sudo apt-get install make
sudo apt-get install git
sudo apt-get install g++
sudo apt-get install libboost-all-dev
sudo apt-get install libdb+±dev
sudo apt-get install build-essential
sudo apt-get install libgmp-dev
sudo apt-get install libssl-dev

git clone GitHub - thbaumbach/primecoin: Primecoin High Performance

cd primecoin
cd src

make -f makefile.unix primeminer

primeminer -pooluser=[xpm-payout-address] -poolip=[choose-from-first-post] -poolport=1337 -genproclimit=[threads-to-use] -poolpassword=[some-random-password-for-protection*]
[/code][/quote]
no its still not working for me i have 3 days trying to do this can someone make a video