Post
Topic
Board Altcoin Discussion
Re: [XPM] Primecoin High Performance Linux Compilation Guide
by
Myerss
on 28/10/2013, 10:38:04 UTC
Strange everything compiled without error but when I try to start I only get this.
Running on Xubuntu 13.04

Code:
./run-primecoind
Terminated


Code:
ps xuf |grep primecoind
miner     6464  0.0  0.0  17844   976 pts/1    S+   11:31   0:00      \_ grep --color=auto primecoind

primecoind getinfo
error: couldn't connect to server

Heres my script:
Code:
#!/bin/bash
export PATH="/usr/local/bin:$PATH"
killall --older-than 10s -q run-primecoind primecoind
function background_loop
        while :; do
                primecoind >/dev/null 2>&1
                sleep 1
        done
background_loop &