1
I created a cpuminer instance for my Raspberry Pi derived from this tutorial. Apparently, I've correctly configured the implementation because I can run the example provided in the README:
./cpuminer -u alexanderjsingleton.Pericles -p pass -o stratum+tcp://stratum.slushpool.com:3333 -t cputhreads
Apparently, that command is indeed the example because I'm not seeing any feedback displayed within my slushpool-account dashboard for that worker. However, according to this StackExchange:Bitcoin post, the appropriate cpuminer-syntax should be:
./minerd -u alexanderjsingleton.Pericles -p pass -o stratum+tcp://stratum.slushpool.com:3333 -t cputhreads
but that command returns the following error:
./minerd -h --algo scrypt --scantime 33 --url stratum+tcp://stratum.slushpool.com:3333 --userpass [alexanderjsingleton.Pericles]:[password] --threads 1 --retries -1 -P
-bash: ./minerd: No such file or directory
In any case, this is my first experiment with actual Bitcoin-mining, so I'd appreciate any guidance whatsoever to start mining on my first block- thank you!

That's how I originally ran it (ie
./cpuminer -u alexanderjsingleton.Pericles -p pass -o stratum+tcp://stratum.slushpool.com:3333 -t cputhreads) but that doesn't appear to register in my slush-pool dashboard for that worker- so what would be the problem? – alexanderjsingleton – 2017-10-18T15:26:07.223I updated my response. – Andrew Chow – 2017-10-18T15:32:34.807
Thanks Andrew- I suspected the limitations of my Raspberry Pi 3 out of the box might have something to do with the hash-rate- or lack thereof in slushpool. Also I think I correctly specified the correct command-line parameters for Bitcoin now- thanks for the correction (ie
./cpuminer -u alexanderjsingleton.Pericles -p pass -a bitcore -o stratum+tcp://stratum.bitcoin.cz:3333 -t cputhreads). I've got some AntMiners coming soon! :D – alexanderjsingleton – 2017-10-18T16:40:04.077Your command is still incorrect. You want to do
-a sha256dnot-a bitcore.-a bitcoredoes "Timetravel with 10 algos" which is definitely not Bitcoin. – Andrew Chow – 2017-10-18T16:42:23.477Thanks, Andrew!
– alexanderjsingleton – 2017-10-18T18:20:31.393./cpuminer -u alexanderjsingleton.Pericles -p pass -a sha256d -o stratum+tcp://stratum.slushpool.com:3333 -t cputhreads- I included my process on this gist.