了解`who -a`命令的输出


14

我问这个问题是因为,尽管互联网上有很多答案表明这who -a是一个选择,但是没有人解释如何读取输出。如果您可以提供解释此问题的在线网站链接,那将同样是一个不错的答案。这是我要解密的示例:

[bo@hostname ~]$ who -a
                        Jun 17 03:47               590 id=si    term=0 exit=0
           system boot  Jun 17 03:47
           run-level 3  Jun 17 03:47                   last=S
                        Jun 17 03:48              4424 id=l3    term=0 exit=0
LOGIN      tty1         Jun 17 03:48              5503 id=1
LOGIN      tty2         Jun 17 03:48              5504 id=2
LOGIN      tty3         Jun 17 03:48              5505 id=3
LOGIN      tty4         Jun 17 03:48              5506 id=4
LOGIN      tty5         Jun 17 03:48              5507 id=5
LOGIN      tty6         Jun 17 03:48              5508 id=6
           pts/0        Oct 19 16:27             15250 id=ts/0  term=0 exit=0
bo       + pts/1        Oct 23 12:24   .         19776 (10.10.10.93)
           pts/2        Oct 23 13:07              8551 id=ts/2  term=0 exit=0
           pts/3        Oct 22 10:36              5813 id=ts/3  term=0 exit=0
           pts/4        Oct 10 09:06             13002 id=ts/4  term=0 exit=0

Answers:


12

如您所见 man who

-a, --all
      same as -b -d --login -p -r -t -T -u

因此,让我们看一下详细信息:

-b, --boot
      time of last system boot

这是字符串 system boot Jun 17 03:47

-d, --dead
      print dead processes

这是exit=0结尾的字符串

-l, --login
      print system login processes

这是登录ttys(以LOGIN开头的字符串)

-p, --process
      print active processes spawned by init

这个

-r, --runlevel
      print current runlevel

这是 run-level 3 Jun 17 03:47 last=S

下一个是

-T, -w, --mesg
      add user's message status as +, - or ?
-u, --users
      list users logged in

这两个字符串

bo       + pts/1        Oct 23 12:24   .         19776 (10.10.10.93)

希望现在更清楚如何解析此输出。


2
谢谢。这是有关如何阅读手册页的很好的课程。谢谢。
djangofan 2012年

@djangofan,不要忘了更先进的信息工具(info who),它有时会去更多的细节比人
乔治·瓦西利乌
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.