How does one access the properties associated with the blanking CentOS does at init3? How would I disable this for example?
Thanks! jlc
On Tuesday 22 April 2008 08:41:49 Joseph L. Casale wrote:
How does one access the properties associated with the blanking CentOS does at init3? How would I disable this for example?
Maybe it's from the BIOS and not from the OS?
On 22/04/2008, Joseph L. Casale jcasale@activenetwerx.com wrote:
How does one access the properties associated with the blanking CentOS does at init3? How would I disable this for example?
I'm not sure I understand exactly what it is you are asking. Would you please elaborate?
Alan.
On Mon, Apr 21, 2008 at 9:41 PM, Joseph L. Casale jcasale@activenetwerx.com wrote:
How does one access the properties associated with the blanking CentOS does at init3? How would I disable this for example?
You'd use setterm for this. See this thread -> http://lists.centos.org/pipermail/centos/2005-June/048330.html
Jim Perrin wrote:
On Mon, Apr 21, 2008 at 9:41 PM, Joseph L. Casale jcasale@activenetwerx.com wrote:
How does one access the properties associated with the blanking CentOS does at init3? How would I disable this for example?
You'd use setterm for this. See this thread -> http://lists.centos.org/pipermail/centos/2005-June/048330.html
Not sure this works when run from an init script - I couldn't get it to work - so I use:
echo -n '^[[9;0]' > /dev/console
where ^[ is the Escape character - see console_codes(4)
James Pearson