美文网首页
PS命令对应的进程状态

PS命令对应的进程状态

作者: wMeSlAx767 | 来源:发表于2019-02-28 10:18 被阅读0次

The state is given by a sequence of characters, for example, ``RWNA''. The first character indicates the run state of the process:

           I       Marks a process that is idle (sleeping for longer than about 20 seconds).
           R       Marks a runnable process.
           S       Marks a process that is sleeping for less than about 20 seconds.
           T       Marks a stopped process.
           U       Marks a process in uninterruptible wait.
           Z       Marks a dead process (a ``zombie'').

Additional characters after these, if any, indicate additional state information:

           +       The process is in the foreground process group of its control terminal.
           <       The process has raised CPU scheduling priority.
           >       The process has specified a soft limit on memory requirements and is currently exceeding that limit; such a process is (necessarily) not swapped.
           A       the process has asked for random page replacement (VA_ANOM, from vadvise(2), for example, lisp(1) in a garbage collect).
           E       The process is trying to exit.
           L       The process has pages locked in core (for example, for raw I/O).
           N       The process has reduced CPU scheduling priority (see setpriority(2)).
           S       The process has asked for FIFO page replacement (VA_SEQL, from vadvise(2), for example, a large image processing program using virtual memory to sequentially
                   address voluminous data).
           s       The process is a session leader.
           V       The process is suspended during a vfork(2).
           W       The process is swapped out.
           X       The process is being traced or debugged.

相关文章

  • PS命令对应的进程状态

    The state is given by a sequence of characters, for examp...

  • ps 命令-查看进程

    ps命令用于显示当前进程(process)的状态,top命令实时显示process进程的状态。 参数解释: ps ...

  • 查看nginx服务器日志

    ps:process status 进程状态,专门查看进程的命令

  • day20-进程管理(1)

    1. 监控进程状态 1.1 使用ps命令查看当前的进程状态(静态) ps -aux为常用组合,用于查看进程的用户、...

  • Linux_131_ps命令

    ps命令:用于报告当前系统的进程状态ps命令主要用于查询进程信息,主要和kill命令搭配,进行对进程的管理,杀死1...

  • Linux命令-ps命令

    ps命令 ps命令就是最基本同时也是非常强大的进程查看命令。使用该命令可以确定有哪些进程正在运行和运行的状态、进程...

  • Android ps命令详解

    ps(Process status )查看进程状态的命令,该命令显示瞬间进程的状态简单用法,直接adb shell...

  • Linux ps命令

    Linux ps命令用于显示当前进程 (process) 的状态。 ps [options] [--help] -...

  • andoid ps

    ps进程命令在adb shell终端,输入ps,可查看手机当前所有的进程状态,其中ps的英文全称是Process ...

  • Linux常用系统管理命令详解

    ps ps命令用于查看系统中的进程状态。 命令格式:ps [参数] 命令参数说明: 参数作用-a显示现行终端机下的...

网友评论

      本文标题:PS命令对应的进程状态

      本文链接:https://www.haomeiwen.com/subject/utacuqtx.html