AUTO START FARMING AND HARVESTING PROCESSES
One thing I have set up on each server is an entry in crontab to immediately start the farmer/harvester back up at boot up. This keeps me from having to do it if the server is restarted for some reason.
# For a Chia farmer
@reboot cd ~/chia-blockchain && . ./activate && chia start farmer
# For a Chia harvester
@reboot cd ~/chia-blockchain && . ./activate && chia start harvester
# For a HDDcoin farmer
@reboot cd ~/hddcoin-blockchain && . ./activate && hddcoin start farmer
# For a HDDcoin harvester
@reboot cd ~/hddcoin-blockchain && . ./activate && hddcoin start harvester
Comments
Post a Comment