>> "JB" == Jay Barbee <[EMAIL PROTECTED]> writes: JB> How do you shutoff the console's screen blank? JB> I would like to be able to just boot up and not have the console blank out.
The command is setterm -blank 0
Just create a file in /etc/rc.boot
#!/bin/sh
setterm -blank 0
and chmod 755 it.
Ciao,
Martin

