On Sun, Feb 16, 2003 at 03:43:10PM -0600, Michael Heironimus wrote: > On Sun, Feb 16, 2003 at 07:06:20PM +0300, Eduardo Rocha Costa wrote: > > Please, how do I switch off the command line blanking ?? > > > > Let me explain better, if I'm in the command line and I leave > > the terminal untouched, the screen becomes blank. How do I do to it > > not become blank ? > > I believe it's "setterm -blank 0". setterm is how you control most of > the behaviors of the console, refer to the man page for full details.
Yes. I find this useful. As root: # cat > /etc/init.d/noblank #!/bin/sh echo -n "Disabling screen blanking..." /usr/bin/setterm -blank 0 echo "done." ^D # chmod 755 /etc/init.d/noblank # ln -s /etc/init.d/noblank /etc/rc2.d/S99noblank This automatically turns off the blanking as part of the boot process. Pigeon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]