LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 10-26-2014, 11:18 PM   #1
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Rep: Reputation: 76
How could I make CRT to stand all time active


Hi: the monitor in my computer is going to low power consumption after some 20 minutes without keyboard input. How could I make the monitor to stand all time active (by means of a linux command).
 
Old 10-27-2014, 01:11 AM   #2
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,818

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
Which desktop environment?

Maybe this will work for you: Create a file eg /etc/X11/xorg.conf.d/10-disable-dpms.conf with
Code:
Section "ServerLayout"
    Identifier "ServerLayout0"
    Option "Blanktime" "0"
    Option "StandbyTime" "0"
    Option "SuspendTime" "0"
    Option "OffTime" "0"
EndSection
Restart the X-server, and observe whether your DPMS problems are over.
 
Old 10-27-2014, 02:09 AM   #3
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
My fault, I forgot to say I am not using X or any other graphical server. In fact, when I am using the GUI, I do need to protect the tube (this is a "real" CRT), the code is welcome.

Last edited by stf92; 10-27-2014 at 02:14 AM.
 
Old 10-27-2014, 02:21 AM   #4
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,818

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
Quote:
My fault, I forgot to say I am not using X or any other graphical server
Ah, yes that is a significant detail

The try adding the following boot parameter to your grub/lilo configuration
Code:
consoleblank=0
By default, this is usually set to 600s
Code:
# cat /sys/module/kernel/parameters/consoleblank
600
 
3 members found this post helpful.
Old 10-27-2014, 02:40 AM   #5
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Thanks a lot.
 
Old 10-27-2014, 08:36 PM   #6
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
I was totally misled thinking it set itself in low power mode. What is does is cut off the beam and, hence, the boot parameter is ineffectual.
 
Old 10-27-2014, 10:46 PM   #7
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,818

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
Maybe there is a BIOS setting which can be used to disable screen blanking under ACPI settings (or similar)?
 
Old 10-27-2014, 11:01 PM   #8
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,818

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
Not so elegant, but another approach that might suit (=work for you)

http://idratherhack.blogspot.co.nz/2...linux-how.html

Quote:
The main cause of difficulty is that there are several different systems that can blank the screen. Firstly, there's the linux console, this is the 'text mode' system that's operational even when you're not running a graphical display (you probably knew that).

Once upon a time, this would have been sufficient to turn off screen blanking at the console:

setterm -blank 0

However, modern monitors can powerdown (which old-skool CRT's generally didn't, as in those days fossil fuel resources grew on trees. But then we cut all the trees down). Powering down is different to blanking the screen, it's actually turning the screen off, so you also need to do

setterm -powerdown 0

But there is also 'powersave'. I don't know how this differs from powerdown, but you should also do

setterm -powersave 0

So that's three commands needed for you to be sure that you've switched off screen blanking/turning off in the console alone, before we've even started X.
If manually invoking the above works, then you'll need to figure out a way to automate it at boot.
 
1 members found this post helpful.
Old 10-27-2014, 11:03 PM   #9
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
That is, use ACPI to do the work, I see. But I'm now not so sure about the beam being cut off. Maybe it just blanks the screen. In either the GUI or the linux consoles, the first thing that happens is the screen going blank, without changing the power mode at all, things going by usual setup. And in this case, ACPI wouldn't be interfering at all.

Sorry, your post came when I was still writing mine.
 
Old 10-28-2014, 12:55 AM   #10
stf92
Senior Member
 
Registered: Apr 2007
Location: Buenos Aires.
Distribution: Slackware
Posts: 4,442

Original Poster
Rep: Reputation: 76
Quote:
Originally Posted by ferrari View Post
Not so elegant, but another approach that might suit (=work for you)

http://idratherhack.blogspot.co.nz/2...linux-how.html



If manually invoking the above works, then you'll need to figure out a way to automate it at boot.
Fine page! I've been reading the setterm manual too. Think
I now have large enough material to work with. Thanks a lot.
 
Old 10-28-2014, 01:24 AM   #11
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,818

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
Quote:
Fine page! I've been reading the setterm manual too. Think
I now have large enough material to work with. Thanks a lot.
Let us know how you get on!
 
Old 10-28-2014, 10:33 AM   #12
metaschima
Senior Member
 
Registered: Dec 2013
Distribution: Slackware
Posts: 1,982

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
People seem to be missing a huge point here, this is a CRT ! It will burn-in if you leave it on !
https://en.wikipedia.org/wiki/Screen_burn-in
 
Old 10-28-2014, 12:42 PM   #13
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,818

Rep: Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144Reputation: 1144
As a former computer technician with experience repairing CRT monitors, I'm well aware of burn-in, and I would suspect the OP is too. However, this takes a takes a long time with a static image, and I have encountered some use-cases (in business) where it was not desirable to have the screen turn off. Keeping the screen brightness low also helped with this. What is far more common these days, is users with modern flat-screen monitors that struggle to prevent blanking in various environments.
 
Old 10-28-2014, 01:20 PM   #14
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: Slackware®
Posts: 13,925
Blog Entries: 44

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Member Response

Hi,

One thought that comes to mind is the monitor setup menu. Some smart CRT monitors have a hot key combination that will present a setup menu. With some Smart CRT you could setup monitor controls. Check your monitor manual.

Hope this helps.
Have fun & enjoy!
 
  


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
how to reduce time of git pulling each time when you do a make world on Xen sourc tkmsr Linux - Virtualization and Cloud 4 03-07-2011 11:09 AM
how to make a pppoe connection active all the time? nicumarius Linux - Networking 2 05-17-2009 10:21 AM
Cant find the sources of stand-alon Engage (e17) docker to make me a deb for my box? frenchn00b Linux - General 7 12-05-2008 05:15 PM
Running time active process js_valencia Linux - General 6 02-15-2006 10:14 AM
Take a stand against software patents. YOU can make a difference! apeekaboo General 0 11-06-2005 02:13 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 03:31 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