Oppsss... sorry I pointed you to the wrong thread I opened two threads but anyway this one should be the right one I hope it helps.
-
https://bitcointalk.org/index.php?topic=5036844.msg57566189#msg57566189[/quote]
I tried what he had with same error, but believe it or not i did figure it out.
The documents show it like this:
*/1 * * * * /usr/sbin/logrotate /etc/logrotate.conf 2>&1 | logger -t logrotate
0 0 * * * /usr/sbin/bos_upgrade_at 2>&1 | logger -t upgrade
0 9 * * * /etc/init.d/bosminer stop && sed -i 's/^psu_power_limit = .*/psu_power_limit = 960/' /etc/bosminer.toml && /etc/init.d/bosminer start
0 2 * * * /etc/init.d/bosminer stop && sed -i 's/^psu_power_limit = .*/psu_power_limit = 1280/' /etc/bosminer.toml && /etc/init.d/bosminer start
The problem was found when I decided to read the /etc/bosminer.toml file.. It had no line or ref for psu_power_limit any place in there, but there was a line that had power_target = 1420. So I said, well that might work, so I wrote this
*/1 * * * */usr/sbin/logrotate /etc/logrotate.conf 2>&1 | logger -t logrotate
0 0 * * */usr/sbin/bos_upgrade_at 2>&1 | logger -t upgrade
0 23 * * * /etc/init.d/bosminer stop && sed -i 's/^power_target = .*/power_target = 1420/' /etc/bosminer.toml && /etc/init.d/bosminer start
0 5 * * * /etc/init.d/bosminer stop && sed -i 's/^power_target = .*/power_target = 800/' /etc/bosminer.toml && /etc/init.d/bosminer start
It works perfect now. Thanks for your help.