Im back to getting error code 46 and I am on linux now using drivers 375.20. Can anyone confirm running ewbf on linux with no crashes and what driver version they are on?
Also, how can I use --eexit to restart the miner on linux? Cant really find examples in google!
EWBF v0.3.1b
60x EVGA 1070 FTW
TDP 60% (110w per card)
OC +150/+595
Drivers 378.49
w10 enterprise
2654 Sols/s on average (~442Sols/s per card)
Average Reject ~0.32% (~6M shares, 19.2k rejects)
Pool Flypool
Running 24/7 since release non stop (5 days ago)
for your question bughatti, you can use the command "until" to monitor your miner and restart it if it exited other than gracefully
#!/bin/bash
until miner --server eu1-zcash.flypool.org --user xxx --pass x --port 3333 --eexit 3 --log 2 --solver 0 --logfile ZCASH.ewbf.log --api 0.0.0.0:4444; do
echo "Miner crashed with exit code $?. Restarting" >&2
sleep 10
done
Put this in a bash file (of course edit the miner startup line with your settings), it will start your miner, and monitor the process, if it exit with 0 mean it ended gracefully and it will exit the bash script, if the errorlevel is anything else than 0, it will restart the miner and continue to monitor it. The "sleep 10" is here to let time for the miner to restart properly.
Cheers