Linux下查杀stopped进程的方法

2021-02-23 07:38:45 240 0
tangjin

小编给大家分享一下Linux下查杀stopped进程的方法,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

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

ps-ej|grepT

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 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

一般较常见的是5种状态码:

D 不可中断 uninterruptible sleep (usually IO)

R 运行 runnable (on run queue)

S 中断 sleeping

T 停止 traced or stopped

Z 僵死 a defunct (”zombie”) process

所以,可以用下面命令ps -A -ostat,ppid,pid,cmd | grep -e '^[T]' 查看stopped的进程信息。如下所示:

#ps-A-ostat,ppid,pid,cmd|grep-e'^[T]'

T67778635morealert_pps.log
T67779654tail-60falert_pps.log
T677710724top
#kill-98635
#ps-A-ostat,ppid,pid,cmd|grep-e'^[T]'
T67779654tail-60falert_pps.log
T677710724top
#kill-99654
#kill-910724

看完了这篇文章,相信你对“Linux下查杀stopped进程的方法”有了一定的了解,如果想了解更多相关知识,欢迎关注恰卡编程网行业资讯频道,感谢各位的阅读!

收藏
分享
海报
0 条评论
240
上一篇:怎么利用多核CPU来加速你的Linux命令 下一篇:Windows Server 2016服务器配置指南之怎么搭建PHP7运行环境

本站已关闭游客评论,请登录或者注册后再评论吧~

忘记密码?

图形验证码