while true; do timeout 7200 /home/pi/miner/bfgminer_5.4.2-futurebit2_linux_armv6/start_moonlander2.sh; sleep 3; done
Timeout: failed To run Command '/home/pi/miner/bfgminer_5.4.2-futurebit2_linux_armv6/start_moonlander2.sh': No Such File or Directory?
Please help!!
From that error, it appears that the path you specified does not exist, or perhaps the script is not executable.
To check run these commands and put the output in a reply here.
cd /home/pi/miner/bfgminer_5.4.2-futurebit2_linux_armv6/
ls -l start_moonlander2.sh
You are looking for
-rwxr-xr-x
at the start of the line that has
start_moonlander2.sh
on it. If your output doesn't look like that, you may need to use:
chmod +x start_moonlander2.sh
To help yourself out a bit, you might want to watch some youtube videos about using the RaspberryPi shell.