o que é pts / 0,: 0 e atributos antes dele +,? etc


11

Ao ler sobre o Linux, obtive um $ who -a, então, antes de tentar entrar em três dos meus terminais de texto, (tty1,tty2,tty3)respectivamente, e depois voltei para X-window(Ctrl + Alt + f7), tentei: -

$ who
anupam   tty2         2014-09-20 16:19
anupam   tty3         2014-09-20 16:20
anupam   tty1         2014-09-20 16:18
anupam   :0           2014-09-20 16:14 (:0)
anupam   pts/0        2014-09-20 16:21 (:0)
$ whoami
anupam
$ who -a
           system boot  2014-09-20 16:13
           run-level 2  2014-09-20 16:13
LOGIN      tty4         2014-09-20 16:13               736 id=4
LOGIN      tty5         2014-09-20 16:13               740 id=5
anupam   - tty2         2014-09-20 16:19 00:01        3200
anupam   - tty3         2014-09-20 16:20   .          3346
LOGIN      tty6         2014-09-20 16:13               752 id=6
anupam   - tty1         2014-09-20 16:18 00:02        3044
anupam   ? :0           2014-09-20 16:14   ?          1835 (:0)
anupam   + pts/0        2014-09-20 16:21   .          3455 (:0)
$ 

Não estou recebendo alguns termos em second attribute( - tty2,-tty 3,-tty1i [por que -há na frente deles?]) ?:0(Acho que está indicando minha X-windowinicialização [por que há um ?antes :0?]) E valores no quarto atributo[00:01, ., 00:02, ?, .]?

Tentei olhar $ man who -a, mas não obtive essas explicações.

Respostas:


15
  • pts/0é um escravo pseudo-terminal (consulte O que significa "pts /" na saída de w? ).

  • O (:0)informa qual tela você está usando.

  • o +,-,?informa se um usuário / tty está aceitando mensagens. Se verdadeiro, exiba a +para cada usuário se mesg y, a -se mesg nou a ?se seu tty não puder ser declarado.

    Veja a mesgpágina de manual:

    NAME
           mesg - control write access to your terminal
    
    SYNOPSIS
           mesg [y|n]
    
    DESCRIPTION
           Mesg  controls  the  access to your terminal by others.  It's typically
           used to allow or disallow other users to write to  your  terminal  (see
           write(1)).
    
    OPTIONS
           y      Allow write access to your terminal.
    
           n      Disallow write access to your terminal.
    
           If no option is given, mesg prints out the current access state of your
           terminal.
    

Fonte: who.c


Thanx @Sylvain Pineau ,, bem, o que significa aceitar uma mensagem? Porque quando estou executando $ who -a em terminais de texto, sempre recebo apenas (-), não (+) ,, e? está sempre com (: 0) ??
lazarus

1
@jazz: Eu adicionei informações sobre o mesgcomando
Sylvain Pineau

Eu diria "stat'ed" em vez de "afirmou" uma vez que esta é uma espécie de confuso
nneonneo

@nneonneo fixed, thx
Sylvain Pineau
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.