LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-09-2004, 08:15 PM   #1
jbebel
LQ Newbie
 
Registered: Apr 2004
Posts: 12

Rep: Reputation: 0
slackware 10.0 DPMS not working


Has anyone else had problems with DPMS in slackware 10.0? I can't seem to get my monitor to turn off from within X. If I run xset dpms force off, it will make the screen black, but not turn off the monitor. On the same computer, I can run knoppix and the same command will turn off the monitor. Does anyone have any ideas what would cause this? It happens with both the nv and nvidia drivers. Could it be anything with x.org rather than xfree86? Something in the 2.4.26 kernel? This is a GeForce3 Ti200.

Thanks,
Joel
 
Old 07-09-2004, 08:17 PM   #2
rotvogel
Member
 
Registered: Oct 2003
Posts: 534

Rep: Reputation: 30
Check if your kernel has ACPI or APM support.
 
Old 07-09-2004, 08:49 PM   #3
stef52
Member
 
Registered: May 2004
Location: Croatia
Distribution: Slackware
Posts: 35

Rep: Reputation: 15
DPMS problem

I posted about the same problem a week ago. I have the same graphic card and using 2.6.7 kernel with ACPI compiled in. I solved the problem by installing new nvidia driver (1.0-6106).
It seems to be Xorg problem (probably older unoptimized nv/nvidia driver).
 
Old 07-09-2004, 09:21 PM   #4
jbebel
LQ Newbie
 
Registered: Apr 2004
Posts: 12

Original Poster
Rep: Reputation: 0
Still not working

I do have apm loaded as a module. I'm just using the standard bare.i kernel, 2.4.26. I had tried the NVIDIA drivers before, but I was excited to see a new release hoping it would help. It still doesn't turn off my monitor. Maybe I need the 2.6.7 kernel. Here goes giving it a shot.

Joel
 
Old 07-09-2004, 09:28 PM   #5
stef52
Member
 
Registered: May 2004
Location: Croatia
Distribution: Slackware
Posts: 35

Rep: Reputation: 15
Check your /etc/X11/xorg.conf!
You should have line:
Option "DPMS"
under section "Monitor"
 
Old 07-09-2004, 10:22 PM   #6
jbebel
LQ Newbie
 
Registered: Apr 2004
Posts: 12

Original Poster
Rep: Reputation: 0
Hmm. That's interesting. I mistakenly believed the xset dpms force off would override the lack of the DPMS option in xorg.conf, because xset q would show DPMS was enabled. Apparently I was wrong. Adding the DPMS option to xorg.conf allowed it to work, regardless of kernel or nvidia driver.
 
Old 08-12-2004, 11:27 AM   #7
jjge
Member
 
Registered: Jun 2003
Location: Kalkar, Germany
Distribution: Slackware
Posts: 108

Rep: Reputation: 16
I just tried this:

bash-2.05b# /usr/X11R6/bin/xset dpms force off ; /usr/X11R6/bin/xset q
Keyboard Control:
[snip]
Screen Saver:
prefer blanking: yes allow exposures: yes
timeout: 0 cycle: 600
Colors:
default colormap: 0x20 BlackPixel: 0 WhitePixel: 16777215
Font Path:
/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/,/usr/X11R6/lib/X11/fonts/cyrillic/,/opt/kde/share/fonts
Bug Mode: compatibility mode is disabled
DPMS (Energy Star):
Standby: 60 Suspend: 120 Off: 600
DPMS is Enabled
Monitor is Off
[snip]
bash-2.05b#
I am reading this on the monitor that says it is OFF! Of course it isn't and it won't!
 
Old 08-12-2004, 12:11 PM   #8
jbebel
LQ Newbie
 
Registered: Apr 2004
Posts: 12

Original Poster
Rep: Reputation: 0
Do you have Option "DPMS" in your xorg.conf? That fixed it for me.
 
Old 08-12-2004, 12:20 PM   #9
jjge
Member
 
Registered: Jun 2003
Location: Kalkar, Germany
Distribution: Slackware
Posts: 108

Rep: Reputation: 16
yes, it's about the first thing I tried. To no avail. Moreover, as you can see from xset q, DPMS is Enabled.
 
Old 08-12-2004, 12:43 PM   #10
jbebel
LQ Newbie
 
Registered: Apr 2004
Posts: 12

Original Poster
Rep: Reputation: 0
running xset -q tripped me up. It would say DPM is enabled after I ran xset +dpms, but still xset dpms force off didn't work. I'm not sure how to check, but you should definitely make sure that your xorg.conf is right. xset q obviously isn't a reliable indicator of that.
 
Old 08-12-2004, 12:46 PM   #11
jjge
Member
 
Registered: Jun 2003
Location: Kalkar, Germany
Distribution: Slackware
Posts: 108

Rep: Reputation: 16
This is what I currently have:

Section "Screen"
Identifier "Screen 1"
Device "VESA Framebuffer"
Monitor "My Monitor"

# 28viii2004 turn DPMS on
Option "DPMS"
# 12viii2004 try again to get xset working
Option "power_saverrelax"
 
Old 08-12-2004, 01:11 PM   #12
jbebel
LQ Newbie
 
Registered: Apr 2004
Posts: 12

Original Poster
Rep: Reputation: 0
Try putting the Options "DPMS" line in Section "Monitor" rather than Section "Screen"
 
Old 08-12-2004, 01:27 PM   #13
jjge
Member
 
Registered: Jun 2003
Location: Kalkar, Germany
Distribution: Slackware
Posts: 108

Rep: Reputation: 16
Section "Monitor"
Identifier "My Monitor"
[snip]
# 28viii2004 turn DPMS on
Option "DPMS"

And, yes, I did restart the XServer by Control-Alt-Backspace! But, unfortunately... no effect
 
Old 08-12-2004, 01:46 PM   #14
jbebel
LQ Newbie
 
Registered: Apr 2004
Posts: 12

Original Poster
Rep: Reputation: 0
What is your entire monitor section? I don't know if it'll help, but its worth a shot having me look at it.
 
Old 08-12-2004, 01:51 PM   #15
jjge
Member
 
Registered: Jun 2003
Location: Kalkar, Germany
Distribution: Slackware
Posts: 108

Rep: Reputation: 16
here it is, (i did cut out the comment lines, however). The power_saverrelax was another suggestion (didn't work either).

By the way, thanks in advance for your assistance. I may well overlook something, after all...

Section "Monitor"
Identifier "My Monitor"
HorizSync 31.5 - 50.0
VertRefresh 40-90
Option "DPMS"
Option "power_saverrelax"
EndSection
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
DPMS Question s4006576 Slackware 6 02-22-2005 02:00 PM
DPMS is not working consistently on Fedora Core 2 george.howitt Linux - Hardware 1 09-26-2004 11:29 PM
DPMS Not Working On My ProSavage ianeverett Linux - Hardware 1 09-20-2004 02:55 PM
DPMS power mgt not working synaptical Linux - General 1 08-11-2003 10:28 AM
Slackware 8.1 and xset dpms problem. tchang Slackware 0 04-28-2003 10:53 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 12:49 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration