Strange everything compiled without error but when I try to start I only get this.
Running on Xubuntu 13.04
./run-primecoind
Terminated
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:
#!/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 &