博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
who
阅读量:6840 次
发布时间:2019-06-26

本文共 1408 字,大约阅读时间需要 4 分钟。

功能说明:显示已经登录系统的用户,以及系统的启动时间等信息。

参数选项:

-a 显示所有信息,相当于 -b -d --login -p -r -t -T -u
-b 显示系统的启动时间。
-d 显示已死的进程。
-H 显示标题,默认不显示。
-l 显示登录进程。

[root@pydbdev ~]# who

root pts/4 2018-06-25 01:23 (192.168.56.4)
[root@pydbdev ~]# who -b
system boot 2018-06-24 20:52
[root@pydbdev ~]# who -d
pts/0 2018-06-25 01:37 2058 id=ts/0 term=0 exit=0
pts/1 2018-06-25 02:42 27941 id=ts/1 term=0 exit=0
pts/2 2018-06-25 03:21 28172 id=ts/2 term=0 exit=0
pts/3 2018-06-25 03:22 28298 id=ts/3 term=0 exit=0
[root@pydbdev ~]# who -l
LOGIN tty3 2018-06-24 20:52 1870 id=3
LOGIN tty5 2018-06-24 20:52 1874 id=5
LOGIN tty2 2018-06-24 20:52 1868 id=2
LOGIN tty4 2018-06-24 20:52 1872 id=4
LOGIN tty6 2018-06-24 20:52 1876 id=6
[root@pydbdev ~]# who -H
NAME LINE TIME COMMENT
root pts/4 2018-06-25 01:23 (192.168.56.4)
[root@pydbdev ~]# who -H -a
NAME LINE TIME IDLE PID COMMENT EXIT
system boot 2018-06-24 20:52
run-level 5 2018-06-24 20:52
LOGIN tty3 2018-06-24 20:52 1870 id=3
LOGIN tty5 2018-06-24 20:52 1874 id=5
LOGIN tty2 2018-06-24 20:52 1868 id=2
LOGIN tty4 2018-06-24 20:52 1872 id=4
LOGIN tty6 2018-06-24 20:52 1876 id=6
pts/0 2018-06-25 01:37 2058 id=ts/0 term=0 exit=0
pts/1 2018-06-25 02:42 27941 id=ts/1 term=0 exit=0
pts/2 2018-06-25 03:21 28172 id=ts/2 term=0 exit=0
pts/3 2018-06-25 03:22 28298 id=ts/3 term=0 exit=0
root + pts/4 2018-06-25 01:23 . 28480 (192.168.56.4)

转载于:https://www.cnblogs.com/liang545621/p/9503027.html

你可能感兴趣的文章
[LeetCode] Single Number III
查看>>
HDU 3861 The King’s Problem(强连通+二分图最小路径覆盖)
查看>>
第六十三课、C语言的异常处理
查看>>
软件概要设计说明书—模板
查看>>
iOS Sprite Kit教程之编敲代码以及Xcode的介绍
查看>>
Linux 安装mysql
查看>>
一图总结C++中关于指针的那些事
查看>>
逻辑地址、线性地址、物理地址以及虚拟存储器
查看>>
OpenFlow protocol version 1.0 通信过程
查看>>
java转义符和正则表达式转义符
查看>>
poj 2406 Power Strings
查看>>
4.3 合并重复的条件执行片段
查看>>
<转>从K近邻算法、距离度量谈到KD树、SIFT+BBF算法
查看>>
版本号控制-GitHub
查看>>
Linux安装ftp组件
查看>>
使用Topshelf创建Windows服务(转)
查看>>
android ndk-build 编译静态库libxx.a 以及Android studio openssl 静态库配置(cmake)
查看>>
机器人仿真软件
查看>>
Spring MVC-表单(Form)标签-文本框(Text Box)示例(转载实践)
查看>>
使用C#创建及调用WCF完整实例 (Windows服务宿主)
查看>>