SUSE / openSUSE This Forum is for the discussion of Suse Linux. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
07-07-2005, 02:44 PM
|
#1
|
Member
Registered: Jul 2005
Posts: 71
Rep:
|
Monitor just goes blank and won't go to standby
My monitor just goes blank and won't go to standby...display power management is enabled in the desktop configuration and after the specified time in standby, suspend or power off, it just goes blank (like a blank screen screensaver) but won't go to power-save mode. How can I fix this?
|
|
|
07-07-2005, 02:57 PM
|
#2
|
Senior Member
Registered: Mar 2005
Location: Las Vegas, NV
Distribution: Mandriva Slackware FreeBSD
Posts: 1,468
Rep:
|
You may want to adjust some of the DMPS functions in "ServerLayout" Section in your X configuration file. You may add the section if it does not exist.
To manipulate the DPMS functions, you can create/modify the following items in the ServerLayout section.
Section "ServerLayout"
Option "BlankTime" "10" # Blank the screen in 10 minutes (Fake)
Option "StandbyTime" "20" # Turn off screen in 20 minutes (DPMS)
Option "SuspendTime" "30" # Full hibernation in 30 minutes (DPMS)
Option "OffTime" "40" # Turn off DPMS monitor (DPMS)
EndSection
BlankTime is not actually a power saving level at all. The screen is sent a "fake" blanking effect and defaults to activate after 10 minutes. Alternately, it can indicate the number of minutes until the screensaver should activate. It has nothing to do with DPMS.
StandbyTime is a very minor power saving level. This setting usually involves blanking the screen by turning off the electron (RGB) gun. However, the power supply is left on and the tube filaments energized. When you need to use the monitor again, the monitor will come back on very quickly. This option requires DPMS monitor/video-card support and defaults to 20 minutes under X-Windows. Also known as hsync suspend mode, since the horizontal sync signal is turned off to signal this power management state to a DPMS monitor.
SuspendTime is a very strong low power alternative. This setting usually involves the same power conservation as StandbyTime, however in addition the power supply is turned off. This option requires DPMS monitor/video-card support and defaults to 30 minutes under X-Windows. Also known as vsync suspend mode, since the vertical sync signal is turned off to signal this power management state to a DPMS monitor.
OffTime usually means just that. The computer monitor is turned off. A small auxiliary circuit stays on to monitor the signals from the computer to turn the monitor back on when data needs to be displayed to the screen. Obviously, this keeps power consumption to a bare minimum (zero). While the power saving is substantial, to reactivate the monitor may take up to 8-10 seconds. This option requires DPMS monitor/video-card support and defaults to 40 minutes under X-Windows. Both the horizontal and vertical sync signals are turned off to signal this power management state to a DPMS monitor.
KC
|
|
|
07-07-2005, 04:12 PM
|
#3
|
Member
Registered: Jul 2005
Posts: 71
Original Poster
Rep:
|
The X configuration file is the /etc/X11/xorg.conf? There is a serverlayout section in it, but it doesn't have any blank/standby time values in it... It looks like this:
Section "ServerLayout"
Identifier "Layout[all]"
InputDevice "Keyboard[0]" "CoreKeyboard"
InputDevice "Mouse[1]" "CorePointer"
Option "Clone" "off"
Option "Xinerama" "off"
Screen "Screen[0]"
EndSection
Should I just add the lines you wrote? Or is it the wrong file?
|
|
|
07-07-2005, 09:12 PM
|
#4
|
Senior Member
Registered: Mar 2005
Location: Las Vegas, NV
Distribution: Mandriva Slackware FreeBSD
Posts: 1,468
Rep:
|
Yes, you can add them all and just comment '#' out the ones you don't wish to use as such:
Section "ServerLayout"
Identifier "Layout[all]"
InputDevice "Keyboard[0]" "CoreKeyboard"
InputDevice "Mouse[1]" "CorePointer"
Option "Clone" "off"
Option "Xinerama" "off"
Screen "Screen[0]"
# Option "BlankTime" "10" # Blank the screen in 10 minutes (Fake)
Option "StandbyTime" "20" # Turn off screen in 20 minutes (DPMS)
# Option "SuspendTime" "30" # Full hibernation in 30 minutes (DPMS)
# Option "OffTime" "40" # Turn off DPMS monitor (DPMS)
EndSection
KC
|
|
|
07-08-2005, 01:51 PM
|
#5
|
Senior Member
Registered: Nov 2003
Location: Knoxville, TN
Distribution: Kubuntu 9.04
Posts: 1,168
Rep:
|
Hmm, I've been having the exact same problem. So I guess Xorg broke the KDE control center applet for power management, because I know this was working perfectly with Mandrake 9.2 which uses XFree.
|
|
|
07-08-2005, 04:08 PM
|
#6
|
Senior Member
Registered: Nov 2003
Location: Knoxville, TN
Distribution: Kubuntu 9.04
Posts: 1,168
Rep:
|
Well, it was worth a try.
Despite never having a 'BlankTime' entry in my xorg.conf and despite adding an 'OffTime' entry, it continues to blank my screen (leaving the backlight on, just blanking it) after about 5 minutes -- where it gets that number from I'll never know. Ironically, running 'xset -dpms' stops the useless screen blanking but does nothing to dpms. As a side note, running 'setterm -powersave off' -- yes, I've tried EVERYTHING -- returns 'cannot (un)set powersave mode', whatever the !@#$ that means.
|
|
|
07-08-2005, 04:14 PM
|
#7
|
Member
Registered: Jul 2005
Posts: 71
Original Poster
Rep:
|
I added the lines in xorg.conf, still the same problem...
|
|
|
07-08-2005, 04:17 PM
|
#8
|
Member
Registered: Nov 2003
Location: Here & Now
Distribution: SuSE 10.2
Posts: 96
Rep:
|
Sounds like driver prob......
|
|
|
07-08-2005, 04:26 PM
|
#9
|
Senior Member
Registered: Nov 2003
Location: Knoxville, TN
Distribution: Kubuntu 9.04
Posts: 1,168
Rep:
|
Well, I'm using an integrated Intel 'ExtremeGraphics2' (or something like that) video card. 3D DRI is working perfectly with it, surprsingly, since I've had many probs with that in the past. What kind of vid card are you using bomber?
OpenGL vendor string: Tungsten Graphics, Inc
OpenGL renderer string: Mesa DRI Intel(R) 852GM/855GM 20041217 x86/MMX/SSE2
OpenGL version string: 1.3 Mesa 6.2.1
|
|
|
08-20-2005, 02:16 PM
|
#10
|
Member
Registered: Jul 2005
Posts: 71
Original Poster
Rep:
|
I have a Nvidia Vanta card. Haven't installed nvidia drivers. My monitor is a Sony CPD-200ES.
|
|
|
All times are GMT -5. The time now is 08:50 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|