I have used rm -f primecoin-hp/src and rm --recursive primecoin-hp/src
However, when I reinstall and use these commands,
/primecoin-hp/src# primecoind stop
error: incorrect rpcuser or rpcpassword (authorization failed)
Any ideas how to fix the rpcuser problem?
I checked sudo nano ~/.primecoin/primecoin.conf and it looks all fine.
Try this sequence:
mkdir ~/.primecoin
cat <<+++ > ~/.primecoin/primecoin.conf
rpcuser=USER
rpcpassword=PASSWORD
gen=1
+++
chmod 600 ~/.primecoin/primecoin.conf
git clone https://bitbucket.org/mikaelh/primecoin-hp.git
cd primecoin-hp/src
git pull
make -f makefile.unix clean
make -f makefile.unix USE_UPNP=-
strip primecoind
sudo cp -f primecoind /usr/local/bin/.
primecoind --daemon --server
watch 'primecoind listtransactions && primecoind getmininginfo'