Ctrl내 Ubuntu에서는 자체 컴파일된 커널을 사용하여 ++를 통해 콘솔로 전환 할 수 없으며 검은색 화면이 나타납니다.AltFx
++를 통해 다시 전환 할 수 있습니다 Ctrl. 기본 Ubuntu 커널을 사용하면 잘 전환할 수 있습니다. 이 문제에 대한 소식은 없습니다.AltF7dmesg
이 문제를 어떻게 해결할 수 있나요?
답변1
/etc/inittab
콘텐츠를 올바르게 만들고 채웠 나요 ? 특히 다음이 필요합니다.
# Run gettys in standard runlevels
1:2345:respawn:/sbin/getty tty1
2:2345:respawn:/sbin/getty tty2
3:2345:respawn:/sbin/getty tty3
4:2345:respawn:/sbin/getty tty4
5:2345:respawn:/sbin/getty tty5
6:2345:respawn:/sbin/getty tty6
답변2
우분투에서는 다음 위치에서 tty 구성/명령을 찾습니다.
/etc/default/console-setup:
ACTIVE_CONSOLES="/dev/tty[1-6]"
/etc/event.d/tty1:
# tty1 - getty
# This service maintains a getty on tty1 from the point the system is
exec /sbin/getty 38400 tty1
/etc/init/tty1.conf:
# tty1 - getty
# This service maintains a getty on tty1 from the point the system is
exec /sbin/getty -8 38400 tty1
서로 어떻게 의존하는지, 어떻게 처리하는지 모르겠지만 설정이 그곳에서 관리되는 것으로 의심됩니다.