Post
Topic
Board Project Development
Re: BAMT version 0.5 - Easy USB based mining Linux with farm wide management tools
by
kano
on 23/04/2013, 08:23:47 UTC
...
I did back off on my GPU Settings (HD5870 -> 850/1200/1.175, I6) and i got the same results... my rig is locked up. Sad. Can I consult any file where is wrote what happened before my rig is locked up?
If you run cgminer also with "-m logput.sh" and put logput.sh in the current directory when you start cgminer
and on another machine with IP address IP run ./logget.sh

logput.sh (change IP to the target IP address)
Code:
#!/bin/bash
#
cat | nc IP 7777 &
ncpid="$!"
trap "kill $ncpid" SIGINT SIGTERM EXIT
wait

logget.sh
Code:
#!/bin/bash
#
while true ; do
 echo "`date`: Opening new reader"
 nc -l 7777
 echo "`date`: Reader exited"
done

Then the target machine will see the log.
Or even in the target machine to see and save the log: ./logget.sh 2>&1 | tee log.log