View Single Post
  #3  
Old 10-12-2013, 05:50 AM
mzcl-mn mzcl-mn is offline
Junior Member
 
Join Date: Apr 2012
Posts: 11
mzcl-mn is on a distinguished road
Talking

SOLVED :) --- Re: Need Help on this server on Linux openSuSe 12.3


Quote:
Originally Posted by mzcl-mn View Post
I am almost sure that the only reason that allowed me to finish the download was to stand by the terminal and doing other tasks while the rtmpdump tasks proceeded. Not allowing the computer to use its screensaver might have been the actual reason success.

If this holds true, there is something else that I must look on to, which is, how can I, in the future, prevent this "timeout"?
And... here goes the solution (currently using it)

google search for "avoid kde screensaver"

there you can find this link: blog entry found on how to disable kde's screensaver
And, over that link you have a simple "one-liner" code that goes like this:
Code:
while /bin/true; do qdbus org.freedesktop.ScreenSaver /ScreenSaver SimulateUserActivity > /dev/null; sleep 1m; done
Credits to the blog poster/owner "silviumc"

Last edited by mzcl-mn : 10-12-2013 at 05:53 AM. Reason: forgot to mark as SOLVED :)
Reply With Quote