Displaying 1 result from an estimated 1 matches for "x_tty".
Did you mean:
xc_tty
2011 Nov 06
1
CentOS 6: /etc/init/start-ttys.conf ignored
...d for the other processes since CTRL+ALT+Fx is caught
by the own system and remote console mostly not needed at all
[root at centos ~]# cat /etc/init/start-ttys.conf
#
# This service starts the configured number of gettys.
start on stopped rc RUNLEVEL=[2345]
env ACTIVE_CONSOLES=/dev/tty[1-2]
env X_TTY=/dev/tty1
task
script
. /etc/sysconfig/init
for tty in $(echo $ACTIVE_CONSOLES) ; do
[ "$RUNLEVEL" = "5" -a "$tty" = "$X_TTY" ] && continue
initctl start tty TTY=$tty
done
end script
[root at ce...