-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using script -f 2 but after 1 hour pc hangs #78
Comments
your miner script is looping, that's why it leaves the original open.. you can just use your miner script without the start script actually. |
Ow my God did you even read what my issue is? I am just running it on a loop. The problem is after a period of time it will just hang and won't restart. I have just had to reboot the pc again so that it will run. |
"I have attempted to write a script to close the miner and re-open after 60 mins but all it does it open a new miner whilst leaving the original open." that was one of your problem too.. your start script and miner script are both in loop if you didn't realize.. the 2 overlapped loops make your program crashes.. you killed the genoil.exe in the start script but the miner script actually relaunch another miner when it dies. This will launches a lot of miner over time and hence crash. That was just my suggestion.. you can ignore it if you find it unreasonable. |
I have the same problem. Took about 4 hours then the whole system went down and did not reboot. It was totally unresponsive and needed a hard reset by holding the power button for 10s. I have never seen this before. System windows 10 64. AMD driver 16.10.3 with 3xHD7990 and 2x 390x 1 X380. using 0.6 with loop -f 2 |
Ok just to clear things up. |
you can still do it using just one bat file. @echo off This checks if the genoil.exe app is running if not restarts it. But the genoil.exe is started using a new instance which when closed releases the resources. well that is the theory. |
My bad I somehow copied over the -u thats what messed it up |
Check my comment at issue #83. I would setup your bat scripts as suggested there. |
As the above mentions I'm using the -f 2 function to keep the miner running but after 1 hr the pc hangs or goes very slowly with my cards reading 0.0
I had to manually close and restart the miner.
I have attempted to write a script to close the miner and re-open after 60 mins but all it does it open a new miner whilst leaving the original open.
My Start Script with timer
:restart
start "" cmd /C start.bat
TIMEOUT /T 3600
taskkill /f /im genoil.exe
TIMEOUT /T 5
goto restart
My Miner script
:loop
genoil.exe -f 2 -z 1 -c eu1-zcash.flypool.org:333 -u walletid.worker -p z
timeout /t 1 /nobreak
goto :loop
The text was updated successfully, but these errors were encountered: