pts/0 , :0 및 그 앞의 속성은 무엇입니까 + ,? 등

pts/0 , :0 및 그 앞의 속성은 무엇입니까 + ,? 등

Linux에 대해 읽는 동안 을 얻었 $ who -a으므로 시도하기 전에 각각 세 개의 텍스트 터미널에 로그인한 (tty1,tty2,tty3)다음 (Ctrl + Alt + f7)로 돌아와 다음 X-window을 시도했습니다.

$ 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)
$ 

second attribute나는 ( - tty2,-tty 3,-tty1i [왜 -앞에 그것들이 있습니까?]) ?:0(내 시작을 나타내는 것 같습니다 [왜 앞에 X-windowa가 있습니까 ?]) 에서 일부 용어를 얻지 못하고 네 번째 속성의 값을 얻습니다.?:0[00:01, ., 00:02, ?, .]?

를 보려고 했지만 $ man who -a이런 설명이 없었습니다.

답변1

  • pts/0의사 터미널 슬레이브(보다w의 출력에서 ​​"pts/"는 무엇을 의미합니까?).

  • (:0)어떤 디스플레이를 사용하고 있는지 알려줍니다 .

  • 이는 +,-,?사용자/tty가 메시지를 수락하는지 여부를 알려줍니다. true인 경우 +각 사용자에 대해 if mesg y, -if mesg n또는 ?tty를 통계할 수 없는 경우 a를 표시합니다.

    매뉴얼 페이지를 참조하십시오 mesg:

    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.
    

원천:who.c

관련 정보