Post
Topic
Board Mining (Altcoins)
Re: [ANN] FutureBit Moonlander 2: The Most Powerful and Efficient USB Stick Miner!
by
ZedZedNova
on 19/11/2018, 01:20:47 UTC
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.
Code:
cd /home/pi/miner/bfgminer_5.4.2-futurebit2_linux_armv6/
ls -l start_moonlander2.sh

You are looking for
Code:
-rwxr-xr-x
at the start of the line that has
Code:
start_moonlander2.sh
on it. If your output doesn't look like that, you may need to use:
Code:
chmod +x start_moonlander2.sh

To help yourself out a bit, you might want to watch some youtube videos about using the RaspberryPi shell.