You are not logged in.
Arch puts my monitor to 'sleep', or 'blanks' or suspends by default, in 20 minutes or so. It ihappens even without X installed. Where or how do I tweak it to never go to sleep?
I have tried
xset s off
as well as disabling DPMS in xorg.
Couldn't find anything in the wiki pertaining to this exactly.
Last edited by Misfit138 (2007-06-03 12:32:01)
Offline
Take a look in the system BIOS menu and see if it has any special power saving settings. Perhaps something weird is going on with that. Also, you could try setting the delay to some huge number (999) in xorg.conf. I'm not sure of the proper names for the settings but you can look at the man page.
Offline
Hmmm...Even from a base install with just command line, on every machine I install Arch on, the monitor goes to sleep, or to a black screen after 15 or 20 minutes...pressing a key wakes it right back up again, but I want to disable this completely.
Any other thoughts?
Offline
No thoughts, sorry. But I can confirm this behavior. It's somehow annoying that my monitor goes to sleep after about 30 minutes even if I disabled dpms via xset.
Either I can confirm that this is not X relating as it happens out of X, too. Didn't found a BIOS option for that.
Hail to the thief!
Offline
Well with Xorg i know that u can stop that with
Section "ServerLayout"
Option "BlankTime" "0"
Outside xorg.. mabye u can try
setterm -blank 0
setterm -powersave off
or dpms off
xset -dpms
(dpms on: xset +dpms)
But im just guessing.
Offline
May be this can help:
http://www.cyberciti.biz/tips/linux-dis … blank.html
Offline
Thanks for all the replies. I will try and report back.
Offline
In my case the situation is exactly the opposite: I would like the monitor to go off after 15 minutes of idleing, but I don;t know how to do this. Xscreensaver is set to go on after 10 minutes, but the monitor never goes on standby.
Offline
xset works pretty well for that.
To control Energy Star (DPMS) features:
-dpms Energy Star features off
+dpms Energy Star features on
dpms [standby [suspend [off]]]
force standby
force suspend
force off
force on
(also implicitly enables DPMS features)
a timeout value of zero disables the mode
edit: thanks Zaffe, will try that later. (:
Last edited by harlekin (2007-05-30 15:00:14)
Hail to the thief!
Offline
give a look to the end of /etc/rc.sysinit ...
Offline
If anyone has problems with the monitor not going to standby or hibernation, check the .xscreensaver file for this option:
dpmsEnabled: True
In my case this was set to False so that's why the monitor never went in standby mode.
Last edited by RaisedFist (2007-06-02 07:03:48)
Offline
give a look to the end of /etc/rc.sysinit ...
Thanks a lot! (:
Hail to the thief!
Offline
Well I have tried editing xorg with:
Section "ServerLayout"
Option "BlankTime" "0"
And also,
setterm -blank 0
setterm -powersave off
xset -dpms
And removing the command at the end of /etc/rc.sysinit
But while I am watching a DVD on VLC, my screen still goes black.
Last edited by Misfit138 (2007-06-03 12:40:53)
Offline
You don't happen to have xscreensaver or something similar running, do you? It could just be a screensaver running in "draw black screen" mode.
Offline
I've got the same problem, I turn my screensaver off (killall gnome-screensaver) and disable dpms (xset -dpms) and still my screen goes blank... Really annoying when you're trying to watch a movie from your bed or sofa...
I'm now running a java app which uses the Robot class to move my mouse a pixel every ten minutes as a workaround, but a real solution would be nice.
Offline
You don't happen to have xscreensaver or something similar running, do you? It could just be a screensaver running in "draw black screen" mode.
No, I did not intend or specifically install it.
Offline
give a look to the end of /etc/rc.sysinit ...
I tried changing this, rebooted, but my screen still goes to sleep for me...
# Screen blanks after 15 minutes idle time
#/usr/bin/setterm -blank 15
/usr/bin/setterm -blank 0
man page for setterm
-blank [0-60] (virtual consoles only)
Sets the interval of inactivity, in minutes, after which the
screen will be automatically blanked (using APM if available).
Without an argument, defaults to 0 (disable console blanking).
Offline
I finally found a workaround for this through xorg.conf. I will post my tweak when I get home this evening.
As for the console, I haven't tested the 15 minutes yet.
Offline
I finally found a workaround for this through xorg.conf. I will post my tweak when I get home this evening.
Thank you! That would be a great!
Offline
Ok, this is how I fixed mine in /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Evdev Mouse" "CorePointer"
Option "BlankTime" "0"
Option "StandbyTime" "0"
Option "SuspendTime" "0"
Option "OffTime" "0"
I just added the 4 options you see there. Test it out and post back. Good luck.
Offline
That works! Thank you!
Offline
Definitely works. Thanks man.
Offline
This is what's great about good forums. You ask a question... doesn't get the problem solved... find the solution on your own... AND post the answer in your own thread.
Good work Misfit138! This has been an anoying issue for me as well. Looking forward to getting rid of it.
Offline
This is what's great about good forums. You ask a question... doesn't get the problem solved... find the solution on your own... AND post the answer in your own thread.
Good work Misfit138! This has been an anoying issue for me as well. Looking forward to getting rid of it.
Glad you appreciated that. Welcome to the best distro, with the best community and forum.
Offline