Post
Topic
Board Mining software (miners)
Merits 2 from 1 user
Re: Braiins OS: open-source mining firmware [S9, T1]. New release includes AsicBoost
by
papampi
on 17/02/2019, 08:22:29 UTC
⭐ Merited by frodocooper (2)
Good day,
I need my miner to run at 700 MHz during the night and 500 MHz dring the day.
Is it possible to make a time scedule like this?
If not, may be is a good idea to be implemented in the next version.
I have a cheap energy during the night I believe a lo of miners will use it in this way.

As I posted this earlier, crontab is your friend ...

Add 2 cgminer.conf with your desired configs

Example:

Code:
/root/cgminer.conf.500
/root/cgminer.conf.700

Then edit crontab and set it to copy them before reload cgminer.

Code:
crontab -e

Code:
0 7 * * * cp /root/cgminer.conf.500 /etc/cgminer.conf && /etc/init.d/cgminer reload
0 23 * * * cp /root/cgminer.conf.700 /etc/cgminer.conf && /etc/init.d/cgminer reload