This sounds like a bug with slim - try logging in on tty2 and looking at what file descriptors it has open:
ls -al /proc/$(pgrep slim)/fd/ If it has /dev/tty1 open, that's the problem. A better search would be to run the following as root which will tell you the pid of the process that has /dev/tty1 open (cd /proc;for pid in [0-9][0-9]*; do ls -al /proc/$pid/fd|grep /dev/tty1; if [ $? -eq 0 ]; then echo "pid $pid has /dev/tty1 open"; fi; done) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/631155 Title: Cannot login to tty1 after system starts To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/631155/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
