Post
Topic
Board Mining (Altcoins)
Re: SRBMiner-MULTI AMD & CPU Miner 0.7.9
by
guytechie
on 19/08/2021, 12:08:17 UTC
I already do a sleep 1.  Do I need 2 seconds?

Did you get it to run in a terminal with the suggestions?

Try different sleep settings to see if it works. It also depends what cpu/mem you have in other words the faster your system is the longer sleep you might need.


I tried it with longer sleep (up to 10 seconds) same issue...just exits out of the script as soon as it self terminates.

Can you give sample of the script you use? Just in case it twixes my mind what it may be?  Smiley



Code:
#!/bin/bash

sudo sysctl -w vm.nr_hugepages=1280

whoknows=0
while [ $whoknows -le 1 ]
do
sleep 2
./SRBMiner-MULTI --give-up-limit 0 --disable-gpu --algorithm scryptn2 --pool stratum+tcp://scryptn2.na.mine.zpool.ca:4339 --wallet xxxx --password myrigname --cpu-threads 8
sleep 2
SRBMiner-MULTI --give-up-limit 0 --disable-gpu --algorithm Rx2 --pool stratum+tcp://rx2.mine.zergpool.com:8335 --nicehash true --send-stales true --api-enable --api-port 4068  --wallet xxx --password myrigname --cpu-threads 8
#sleep 2
SRBMiner-MULTI --give-up-limit 0 --disable-gpu --algorithm curve --pool stratum+tcp://curvehash.na.mine.zergpool.com:3343 --wallet xxxx --password myrigname --cpu-threads 8
#sleep 2
xmrig-cpu -r 0 -a cn/upx2 -o stratum+tcp://cryptonight_upx.na.mine.zergpool.com:4457 -u xxxx -p myrigname -t 2
sleep 2
#xmrig-cpu -r 0 -a rx/0 -o stratum+tcp://randomx.na.mine.zergpool.com:4453 -u xxxx -p myrigname -t 8
#sleep 2
cpuminer-opt-sse2 -r 0 -a yescrypt -o stratum+tcp://yescrypt.na.mine.zergpool.com:6233 -u xxxx -p myrigname --cpu-affinity AAAA --cpu-priority 5 -t 8
sleep 2
done
echo Loop ended.