Linux-admin Development Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Andrew B. Cramer" <andrew.cramer@cramer-ts.com>
To: "Jorge R . Csapo" <jorge@completo.com.br>, linux-admin@vger.kernel.org
Subject: Re: screensaver
Date: Tue, 11 Feb 2003 14:09:28 -0600	[thread overview]
Message-ID: <3E490418.3454.DC5B3AA@localhost> (raw)
In-Reply-To: <20030211175120.A7094@completo.com.br>


Hi,
	Look for the below message in 'rc.M'. Just comment it out.

# Screen blanks after 15 minutes idle time.
/bin/setterm -blank 15

Best - Andrew

On 11 Feb 2003 at 17:51, Jorge R . Csapo wrote:

> Hi all,
> 
> I'm having an annoying problem and I wonder if someone can help me. I have a
> box (slack 8.0) on which I need to disable screen saving. I have disabled
> everything related to APM and power conserving in the bios. I don't have
> screensaver running on X. Everything related to it in the kernel is disable.
> But still, after a few minutes the screen goes blank.
> 
> Here is my XF86Config:
> 
> Section "ServerLayout"
>         Identifier     "Layout0"
>         Screen      0  "Screen0" 0 0
>         InputDevice    "Keyboard0" "CoreKeyboard"
>         InputDevice    "toque0" "CorePointer"
> EndSection
> 
> Section "Files"
>         ModulePath "/usr/X11R6/lib/modules"
>         FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/Speedo/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/TT/"
> EndSection
> 
> Section "Module"
>         Load  "xie"
>         Load  "pex5"
>         Load  "glx"
>         Load  "dri"
>         Load  "dbe"
>         Load  "record"
>         Load  "extmod"
>         Load  "type1"
>         Load  "freetype"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "Mouse0"
>         Driver      "mouse"
>         Option      "Protocol" "PS/2"
>         Option      "Emulate3Buttons"
>         Option      "Device" "/dev/mouse"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "toque0"
>         Driver "mutouch"
>         Option "Device" "/dev/ttyS0"
>         Option "MinimumXPosition" "100"
>         Option "MaximumXPosition" "16384"
>         Option "MinimumYPosition" "100"
>         Option "MaximumYPosition" "16384"
>         Option "Type" "finger"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "Keyboard0"
>         Driver      "keyboard"
>         Option      "XkbModel" "pc102"
>         Option      "XkbLayout" "us_intl"
> EndSection
> 
> Section "Monitor"
>         Identifier   "Monitor0"
>         HorizSync    31.5 - 37.9
>         VertRefresh  50.0 - 90.0
> EndSection
> 
> Section "Device"
>         Identifier  "Card0"
>         Driver      "vesa"
> EndSection
> 
> Section "Screen"
>         Identifier "Screen0"
>         Device     "Card0"
>         Monitor    "Monitor0"
>         DefaultDepth     16
>         SubSection "Display"
>                 Depth     16
>                 Modes    "1024x768"
>         EndSubSection
> EndSection
> 
> and my xinitrc:
> 
> #!/bin/sh
> 
> userresources=$HOME/.Xresources
> usermodmap=$HOME/.Xmodmap
> sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
> sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap
> 
> # merge in defaults and keymaps
> 
> if [ -f $sysresources ]; then
>     xrdb -merge $sysresources
> fi
> 
> if [ -f $sysmodmap ]; then
>     xmodmap $sysmodmap
> fi
> 
> if [ -f $userresources ]; then
>     xrdb -merge $userresources
> fi
> 
> if [ -f $usermodmap ]; then
>     xmodmap $usermodmap
> fi
> 
> # start some nice programs
> 
> twm -f /etc/twm.cfg &
> xv -quit -root /etc/logosembarra.pcx &
> xsetroot -cursor /etc/cursor.juke /etc/mask.juke &
> /postgres_home/My_Vending_App ; /bin/setleds -L -caps
> 
> It's driving me NUTS!
> 
> any ideas?
> 
> TIA
> 
> 
> -- 
> Jorge R. Csapo
> --------------------------------------------------
>  /"\
>  \ / CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
>   X  ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
>  / \
> --------------------------------------------------
> http://www.completo.com.br/~jorge
> ===========================================
> With a PC, I always felt limited
> by the software available.
> On Unix, I am limited only by my knowledge.
> --Peter J. Schoenster
> -
> To unsubscribe from this list: send the line "unsubscribe linux-admin" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 




  reply	other threads:[~2003-02-11 20:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-02-11 18:51 screensaver Jorge R . Csapo
2003-02-11 20:09 ` Andrew B. Cramer [this message]
2003-02-12  7:18 ` screensaver Glynn Clements
2003-02-12 12:05   ` screensaver - SOLVED Jorge R . Csapo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3E490418.3454.DC5B3AA@localhost \
    --to=andrew.cramer@cramer-ts.com \
    --cc=jorge@completo.com.br \
    --cc=linux-admin@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox