进程就是一个程序的执行实例,也就是正在执行的程序。一个程序可能启动多个进程。Linux中进程用进程号表示,也就是PID
ps -ef :显示所有进程及命令行等信息
<mark style="box-sizing: border-boxbackground-color: rgb(255, 255, 0)color: rgb(0, 0, 0)">每一列的含义</mark>
ps aux :同样是显示所有进程及信息,不过格式略有不同,更详细
<mark style="box-sizing: border-boxbackground-color: rgb(255, 255, 0)color: rgb(0, 0, 0)">每一列的含义</mark>
<mark style="box-sizing: border-boxbackground-color: rgb(255, 255, 0)color: rgb(0, 0, 0)">STAT 的常见状态及含义</mark>作为了解就行
ps -ef | grep nginx
可以看到共找到三条信息
第一个是nginx主进程
第二个是nginx的工作进程
第三个是 grep nginx的进程,也就是ps -ef | grep nginx命令 的进程
ps aux | grep nginx
与ps -ef | grep nginx所显示信息差不多,不过多了ps aux命令中的一些信息,如 %CPU ,%MEM等
分类: 电脑/网络 >> *** 作系统/系统故障问题描述:
linux下ps命令后的status项
显示Rs代表什么含义,
R表示run
s代表sleep
那么R与s合起来是什么?
以及大写S与小写s有什么区别.
经常看到Ss的状态。
解析:
刚刚装了RHEL5β2版本
发现这个版本的ps和top里面是有Ss的
man了一下 ps和top
解释如下
PROCESS STATE CODES
Here are the different values that the s, stat and state output specifiers
(header "STAT" or "S") will display to describe the state of a process.
D Uninterruptible sleep (usually IO)
R Running or runnable (on run queue)
S Interruptible sleep (waiting for an event to plete)
T Stopped, either by a job control signal or because it is being traced.
W paging (not valid since the 2.6.xx kernel)
X dead (should never be seen)
Z Defunct ("zombie") process, terminated but not reaped by its parent.
For BSD formats and when the stat keyword is used, additional characters may
be displayed:
<high-priority (not nice to other users)
N low-priority (nice to other users)
L has pages locked into memory (for real-time and custom IO)
s is a session leader
l is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)
+ is in the foreground process group
完全可以的,大多数的Linux发行版中都会附带WINE程序,可以使用它在Linux安装WIndows程序,如果愿意花钱的话,推荐使用CrossOver程序安装Photoshop。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)