Screen Power Saver - Shut Off?

I have a FreeBSD machine running 8.2/amd64 and KDE3 installed. I went into the Desktop Config->Display->Power Control and turned off power saving mode for the monitor. However, whenever I leave my office for a good period of time, the monitor has been turned off. The light on the monitor is amber when this happens, indicating that there's no signal being supplied. The same monitor does not go into power saving mode when used on other machines, so I'm fairly confident it's something on my FreeBSD box turning it off.

How does one go about shutting off the power saving mode on the monitor so that the screen saver will run and be displayed forever as long as nobody touches the keyboard/mouse?
 
Do you have:
Code:
saver="NO"
blanktime="NO"
in your:/etc/rc.conf?

I'm guessing you have dpms off already, and FreeBSD is loading the greensaver.
 
I do not have either in /etc/rc.conf, but will add them.

DPMS is most likely the culprit though.

Code:
xset -q
...
DPMS (Energy Star):
  Standby: 600    Suspend: 600    Off: 600
  DPMS is Enabled
  Monitor is On
...

I take it something needs to be added to the xorg.conf file to disable this? I checked and the
Code:
Option "DPMS"
line is commented out.
 
In your .xinitrc add:
Code:
xset dpms 0 0 0
which will turn off dpms features, whenever you start X.

There's also x11/xautolock which can run some screensavers and require a password to unlock the screen.
 
For X, in the ServerLayout section:
Code:
        Option       "BlankTime" "0"
        Option       "StandbyTime" "0"
        Option       "SuspendTime" "0"
        Option       "OffTime" "0"
 
Now I'm curious, I have had to solve the same issue in 8.2, and now 9.0. I haven't used x11/xset to change anything, nor do I have the above mentioned code in ServerFlags or ServerLayout options in xorg.conf.

I do notice that the code mentions blanktime, which is what I'm setting in rc.conf.

If I am correct in my thinking, the above solutions will only work while youre in X, I dunno...but sometimes I like to drop out of X to build, and I don't like my monitors turning off then either.
 
Hi i have tried to modify the /etc/X11/xorg.conf file to disable dpms as advised above my new xorg.conf file is:
Code:
Section "ServerLayout"
    Option "BlankTime" "0"
    Option "StandbyTime" "0"
    Option "SuspendTime" "0"
    Option "OffTime" "0"
EndSection
Section "Screen"
    DefaultDepth 24
    Identifier "Screen0"
    Device    "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport 0 0
        Depth    24
        Modes    "1024x768"
    EndSubsection
EndSection

unfortunately xorg crashes out so i have got something wrong, any ideas? I have looked for a sample xorg.conf file to check my changes but not luck.
 
nedry that happens when digging out legacy threads.
Do not use xorg.conf any more, unless there is a real need to do so.

Try in ~/.xinitrc
Code:
xset -dpms
xset s <your seconds>
See xset(1).
 
Back
Top