原Linux命令详解之w命令
LittleLawson阅读数:8512018-10-29
▍ 声明:如有侵权,请及时与我们联系,如有转载,请联系并注明原出处。声明:本文可以不经作者同意任意转载,但任何对本文的引用都须注明作者、出处及此声明信息。商业转载请联系作者获得授权,非商业转载请注明出处。
···
NAME
w - Show who is logged on and what they are doing.
w命令就是用来展示谁在登录,以及他们在做什么。
DESCRIPTION
w displays information about the users currently on the machine, and their processes. The header shows, in this order, the current time, how long the system has been running, how many
users are currently logged on, and the system load averages for the past 1, 5, and 15 minutes.
The following entries are displayed for each user: login name, the tty name, the remote host, login time, idle time, JCPU, PCPU, and the command line of their current process.
The JCPU time is the time used by all processes attached to the tty. It does not include past background jobs, but does include currently running background jobs.
The PCPU time is the time used by the current process, named in the "what" field.
-----当前时间,系统启动到现在的时间,登录用户的数目,系统在最近1秒、5秒和15秒的平均负载。通过查看【进程综合信息】用户可以了解系统当前进程的运行状况,并可自行分析判断系统中的可疑进程,中止进程。在做第一步的时候,系统当前的php fastcgi进程数明显超过了预设值的64这个数值,在电信的服务器上查看当前的php fastcgi进程数没有高于64这个数值,而且网通线路的活动连接明显高于电信的活动连接linux命令,准备到晚上的时候看看情况,结果到晚上22:30的时候,查看系统当前的php fastcgi进程数明显小于64预设值,当前的活动连接也比原来低很多,由此可以说明出现nginx不稳定的情况是由于服务器访问负载过大引起的,就是加上第二步的错误也不顶作用。
接下来的条目展示每个用户:登录名,tty 名linux命令,远程的(登录)主机,登录时间,空闲时间,JCPU,PCPU,以及当前进程的命令行。
JCPU时间是附加到所有的进程的使用时间。它不包括过去的后台程序,但是包括当前正在运行的后台程序。【不太理解】
PCPU时间是当前线程使用的时间,并在what域中展示出来。
上一个教程:Linux chmod命令