在Linux系统下面,top命令可以查看查看stopped进程。但是不能查看stopped进程的详细信息。那么如何查看stopped 进程,并且杀掉这些stopped进程呢?

 

 ps -e j | grep T 

 

Linux查杀stopped进程

 

stopped进程的STAT状态为T,一般而言,进程有下面这些状态码:

D    uninterruptible sleep (usually IO)
 
I    Idle kernel thread
 
R    running or runnable (on run queue)
 
S    interruptible sleep (waiting for an event to complete)
 
T    stopped by job control signal
 
t    stopped by debugger during the tracing
 
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
rs 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

相关文章:

  • 2022-12-23
  • 2021-04-11
  • 2022-01-01
  • 2021-12-29
  • 2022-01-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-20
  • 2021-06-15
  • 2022-12-23
  • 2022-01-24
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案