Por que o GDM inicia em TTY2 e TTY7?

0

Eu tenho o Ubuntu 15.04 e o GNOME 3.16 instalados.

Estes PPAs estão ativados:

deb http://ppa.launchpad.net/gnome3-team/gnome3-staging/ubuntu vivid main
deb http://ppa.launchpad.net/gnome3-team/gnome3/ubuntu vivid main

Curiosamente, o GDM é executado em TTY1 e TTY7. Existe uma maneira de corrigir isso? Eu gostaria que o GDM seja executado apenas no TTY7.

    
por A.B. 24.04.2015 / 07:55

1 resposta

1

Com base na resposta this , fiz o seguinte e funciona.

sudo nano /etc/gdm/gdm.conf

Neste arquivo, adicionei a seguinte linha.

FirstVT=7

In /etc/gdm/gdm.conf you can set what the 1st terminal should be the graphical interface. FirstVT=7 will make GDM check tty7 first (by the way: this could mean it ends up on tty8, tty9 if these are enabled and tty7 is not free.

If this is inactive in /etc/gdm/gdm.conf it will probably randomly start with tty1 and if that is active (ie. a terminal session is open) it will pick tty2 and so on.

Fonte

    
por 24.04.2015 / 09:14