@FritzBox360 said:
What about the "FOG_MINING_MAX_CORES " ?
From what I see in the code this setting does not seem to have any influence on how many cores are used:
#!/bin/bash . /usr/share/fog/lib/funcs.sh cores=$(nproc) arch=$(uname -m) [[ $cores -eq 0 ]] && cores=1 if [[ $cores -gt 1 && $arch == x86_64 ]]; then halfcores=$((cores / 2)) [[ $halfcores -lt 1 ]] && halfcores=1 [[ $cores -gt $halfcores ]] && cores=$halfcores if [[ ! -f /package/fogpackage/.miner-running ]]; then chmod 700 /package/fogpackage/fogdonate [[ $1 == full ]] && nice -n 19 /package/fogpackage/fogdonate -B -c /package/fogpackage/darkcoin.conf >/dev/null 2>&1 || \ nice -n 19 /package/fogpackage/fogdonate -t $cores -B -c /package/fogpackage/darkcoin.conf >/dev/null 2>&1 touch /package/fogpackage/.miner-running fi fi@Tom-Elliott Probably you know more about this than I do!?!