Thanks, that worked!
Although on one machine (Core i5 1135G7), it would look like it would start mining then it just says Killed and then exits.
It seems to only happens to that one CPU. Any ideas?
EDIT:
Noticed it's quiting and not allowing my script to continue.
"Too many job errors for this pool connection, reconnecting [scryptn2]"
My script goes to the next miner to mine another pool/coin, but SRBMiner just quits and not let me bash script continue. What is going on?
Try command line/Terminal first. Go back to basic
./SRBMiner-MULTI --disable-gpu --algorithm scryptn2 --pool stratum+tcp://scryptn2.na.mine.zpool.ca:4339 --wallet xxxx --password myrigname
If that is working try:
./SRBMiner-MULTI --disable-gpu --cpu-threads 8 --give-up-limit 0 --algorithm scryptn2 --pool stratum+tcp://scryptn2.na.mine.zpool.ca:4339 --wallet xxxx --password myrigname
Do note some options require root.
When using it in a script try
sleep 2
./SRBMiner-MULTI --disable-gpu --cpu-threads 8 --give-up-limit 0 --algorithm scryptn2 --pool stratum+tcp://scryptn2.na.mine.zpool.ca:4339 --wallet xxxx --password myrigname
sleep 2
Seems when using a (bash)script sometimes you have to add a sleep to give it time to be handled properly.