Em terminal
...
gedit .profile
altere isso:
mesg n || true
para isso:
tty -s && mesg n || true
O .profile para a conta raiz pode exigir uma correção semelhante (mas ligeiramente diferente).
Quando o sistema carrega, apresenta o seguinte erro:
Error found while loading /home/[username]/.profile
mesg: ttyname failed: inappropriate ioctl for device
As a result the session should not be configured correctly
You should fix the problem as soon as feasible
A saída de grep -i mesg
para .profile
e .bash*
é a seguinte:
$ grep -i mesg .profile
mesg n || true
$ grep -i mesg .bash*
$
Em terminal
...
gedit .profile
altere isso:
mesg n || true
para isso:
tty -s && mesg n || true
O .profile para a conta raiz pode exigir uma correção semelhante (mas ligeiramente diferente).
stty -ixon
em .profile
Eu tinha esse comando no meu .profile
e estava causando o problema no Ubuntu 17.10.
Eu tinha colocado lá por causa das recomendações sobre esta questão: link
Tags command-line .profile