Servidor Ubuntu 16.04 tty não funciona

2

Eu atualizei o servidor do meu escritório para o servidor Ubuntu 16.04, mas tenho um problema com terminais virtuais: eles não abrem.

O sistema inicializa corretamente, também o ssh funciona, mas se eu quiser usar o console pelo teclado do servidor, não é possível porque ele não mostra o prompt de login.

Na tela principal eu vejo uma lista de verde OK, e se eu mudar para outros terminais (ctrl + alt + F2 e assim) eu vejo uma tela preta.

Eu tentei ativar o getty com este comando

systemctl enable [email protected]

mas não funciona. Se eu tentar forçar o início do getty em tty1 (por exemplo) com o comando

systemctl start getty@tty1

nada aconteceu e nenhum erro é exibido.

A única maneira de iniciar um terminal virtual é com este comando

service getty@tty1 start

Eu devo usar o ssh para controlar o servidor. Eu também editei o arquivo /etc/systemd/logind.conf, mas nada foi alterado.

Este é o conteúdo do arquivo logind.conf

#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as
published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.
#
# Entries in this file show the compile time defaults.
# You can change settings by editing this file.
# Defaults can be restored by simply deleting this file.
#
# See logind.conf(5) for details.

[Login]
NAutoVTs=6
ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#HandlePowerKey=poweroff
#HandleSuspendKey=suspend
#HandleHibernateKey=hibernate
#HandleLidSwitch=suspend
#HandleLidSwitchDocked=ignore
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#HoldoffTimeoutSec=30s
#IdleAction=ignore
#IdleActionSec=30min
#RuntimeDirectorySize=10%
#RemoveIPC=yes
#UserTasksMax=12288

Como posso obter os comandos do console para mostrar um prompt de login por conta própria?

    
por djdedo 09.11.2017 / 16:53

1 resposta

0

Eu tive um Ubuntu 16.04 Server não conseguir carregar o TTY7, mas o TTY1-6 funcionou. Se systemctl start funcionar, você pode usar o enable.

sudo systemctl enable getty@tty1

    
por 20.07.2018 / 22:33