Does the mac address adjustment needed for latest cobalt 2019-01-24 to flash permanent via ssh or its only needed for sd card?
Hi guys and thanks Braiins for the great firmware!
I am wondering if someone has an idea how to perform different freq and voltages set up on a schedule?
For example to set up frequency 500 with voltage 8 at 7:00-22:59 and to set up frequency 750 with voltage 9 at 23:00-6:59.
Any ideas are very much appreciated.
Add 2 cgminer.conf with your desired configs
Example:
/root/cgminer.conf.500
/root/cgminer.conf.750
Then edit crontab and set it to copy them before reload cgminer like this
0 7 * * * cp /root/cgminer.conf.500 /etc/cgminer.conf && /etc/init.d/cgminer reload
0 23 * * * cp /root/cgminer.conf.750 /etc/cgminer.conf && /etc/init.d/cgminer reload
Dont know if you need to stop cgminer before copy new config or not, if so you can do this:
59 6 * * * /etc/init.d/cgminer stop
0 7 * * * cp /root/cgminer.conf.500 /etc/cgminer.conf
1 7 * * * /etc/init.d/cgminer start
59 22* * * /etc/init.d/cgminer stop
0 23 * * * cp /root/cgminer.conf.750 /etc/cgminer.conf
1 23 * * * /etc/init.d/cgminer start