什么是pts / 0,:0和+之前的属性?等等


11

在阅读有关Linux的内容时,我得到了$ who -a,因此在尝试(tty1,tty2,tty3)分别登录三个文本终端之前,我又回到了X-window(Ctrl + Alt + f7),然后尝试了:-

$ 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,-tty1我[为什么-在他们前面?])中的某些术语?:0(我想这表明我的X-window创业公司[为什么?在之前存在:0?])和第四个属性的值[00:01, ., 00:02, ?, .]?

我试图看一下$ man who -a,但没有得到这些解释。

Answers:


15
  • pts/0伪终端从站(请参阅w输出中的“ pts /”是什么意思?)。

  • (:0)告诉你正在使用的显示器。

  • +,-,?告诉你一个用户/ TTY是否接受邮件。如果为true,+则为每个用户显示mesg y-如果为,则显示为,如果无法显示其tty mesg n,则为每个用户显示?

    请参见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


谢谢@Sylvain Pineau,接收消息是什么意思,因为当我在文本终端中运行$ who -a时,我只会得到(-),没有(+),并且?始终与(:0)在一起?
lazarus 2014年

1
@jazz:我添加了有关mesg命令的信息
Sylvain Pineau

我要说的是“已声明”而不是“已声明”,因为后者令人困惑
nneonneo 2014年

@nneonneo固定,谢谢
Sylvain Pineau
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.