# tty2 - getty # # This service maintains a getty on tty2 from the point the system is # started until it is shut down again. start on runlevel 2 start on runlevel 3 stop on runlevel 0 stop on runlevel 1 stop on runlevel 4 stop on runlevel 5 stop on runlevel 6 respawn <<< ERROR! /sbin/getty 38400 tty2exec /sbin/getty 38400 tty2 <<< ERROR!The last two lines are reversed for one and the last line itself is a mesh of two commands, just need to clean them up to look like this:
... exec /sbin/getty 38400 tty2 respawn
Do this for all tty# files and you will have your consoles back under CTRL+ALT+{1-6}. ;-)
Man, you saved my life! Thanks!
ReplyDelete