Não é possível mudar para o console usando meu próprio kernel compilado

1

No meu Ubuntu, não consigo alternar para o console por meio de Ctrl + Alt + Fx usando meu próprio kernel compilado e um preto aparece a tela.

Eu posso voltar através de Ctrl + Alt + F7 . Usando o kernel padrão do Ubuntu, posso alternar normalmente. dmesg não tem mensagem sobre isso.

Como posso consertar isso?

    
por hello.wjx 27.02.2012 / 13:12

2 respostas

1

Você criou e preencheu seu /etc/inittab adequadamente? Em particular, você vai querer estes:

# 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
    
por 29.02.2012 / 17:39
0

No Ubuntu, eu acho o tty-configuration / commands em:

/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

Eu não sei como eles dependem uns dos outros e o que fazer sobre eles, mas suspeito que a configuração é gerenciada lá.

    
por 29.04.2012 / 22:23