How to prevent the monitor from turning off in Linux

7

4

I have to start a QT-Program on the screen on startup in Linux Mint 9.  The monitor that is displaying the program turns off after an unknown amount of time.  I already deactivated the turnoff in the systemconfiguration, but it doesn't seem to work.

Hardware specs:

  • CPU: Intel ATOM 330
  • GPU: Nvidia ION (330)
  • 2 GB RAM
  • OS: Linux Mint 9

I can't change the OS and the other specs.  What can I do to solve this problem?

Linuxnewb

Posted 2012-03-23T14:06:46.157

Reputation: 71

Answers

14

try:

xset -dpms
xset s noblank
xset s off 

akira

Posted 2012-03-23T14:06:46.157

Reputation: 52 754

i'll try your line as soon as I'm at work on monday, I'll reply back, thanks in advance :) – Linuxnewb – 2012-03-23T16:27:26.747

7

Issuing those three commands separately is unnecessary, according to Display Power Management Signaling at ArchWiki.  All you need is

xset s off -dpms

and all you want will happen.

Ben

Posted 2012-03-23T14:06:46.157

Reputation: 81

2

Maybe this can help you.

In short:

xset -dpms

cYrus

Posted 2012-03-23T14:06:46.157

Reputation: 18 102

1

Open the Power Manager. Select the Display tab. On the left where is says "Blank after", move the slider all the way to the left under Plugged In, or the corresponding power type, batter or plugged in. This is assuming it's not the screen saver that is making your monitor go blank.

This is for Linux Mint 17.2, so I'm not sure if it will be the exact same with your older version.

Christopher S. Atkins

Posted 2012-03-23T14:06:46.157

Reputation: 21

-1

The winning combination:

xset s noblank dpms force on

user3524973

Posted 2012-03-23T14:06:46.157

Reputation: 1