Infelizmente, isso está mais envolvido do que apenas editar o /etc/inittab
agora. Eu encontrei 2 exemplos que foram úteis:
O gist, modifica este arquivo: /etc/init/start-ttys.conf
:
script
. /etc/sysconfig/init
for tty in $(echo $ACTIVE_CONSOLES) ; do
[ "$RUNLEVEL" = "5" -a "$tty" = "$X_TTY" ] && continue
if [ "$tty" == "/dev/tty5" ]; then
initctl start no_respawn_tty TTY=$tty
continue
fi
initctl start tty TTY=$tty
done
end script
Em seguida, crie o script correspondente, /etc/init/no_respawn_tty.conf
:
# tty - getty
#
# This service maintains a getty on the specified device.
stop on runlevel [S016]
instance $TTY
exec /sbin/mingetty $TTY
usage 'tty TTY=/dev/ttyX - where X is console id'
As alterações devem ser vistas imediatamente, acho que você não precisa reiniciar nada.