Linux下如何查殺stopped進(jìn)程詳解
前言
在Linux系統(tǒng)下面,top命令可以查看查看stopped進(jìn)程。但是不能查看stopped進(jìn)程的詳細(xì)信息。那么如何查看stopped 進(jìn)程,并且殺掉這些stopped進(jìn)程呢?
ps -e j | grep T
stopped進(jìn)程的STAT狀態(tài)為T,一般而言,進(jìn)程有下面這些狀態(tài)碼:
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種狀態(tài)碼:
D 不可中斷 uninterruptible sleep (usually IO)
R 運(yùn)行 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的進(jìn)程信息。如下所示:
# ps -A -ostat,ppid,pid,cmd | grep -e '^[T]' T 6777 8635 more alert_pps.log T 6777 9654 tail -60f alert_pps.log T 6777 10724 top # kill -9 8635 # ps -A -ostat,ppid,pid,cmd | grep -e '^[T]' T 6777 9654 tail -60f alert_pps.log T 6777 10724 top # kill -9 9654 # kill -9 10724
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)腳本之家的支持。
相關(guān)文章
Linux 添加開機(jī)啟動(dòng)方法(服務(wù)/腳本)
這篇文章主要介紹了Linux 添加開機(jī)啟動(dòng)方法(服務(wù)/腳本),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-12-12CentOS 下yum安裝mysql、jdk和tomcat的方法
這篇文章主要介紹了CentOS 下yum安裝mysql、jdk和tomcat的方法的相關(guān)資料,需要的朋友可以參考下2016-10-10ubuntu/deepin制作快捷啟動(dòng)圖標(biāo)的方法
這篇文章主要介紹了ubuntu/deepin制作快捷啟動(dòng)圖標(biāo)的方法,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下2017-02-02centos 6.9 升級(jí)glibc動(dòng)態(tài)庫(kù)的詳細(xì)過(guò)程
glibc是gnu發(fā)布的libc庫(kù),即c運(yùn)行庫(kù),glibc是linux系統(tǒng)中最底層的api,幾乎其它任何運(yùn)行庫(kù)都會(huì)依賴于glibc。這篇文章主要介紹了centos 6.9 升級(jí)glibc動(dòng)態(tài)庫(kù)的詳細(xì)過(guò)程,需要的朋友可以參考下2019-11-11Centos6.5全自動(dòng)安裝 vsftpd+dhcp+nfs+tftp
本文主要記述了在Centos6.5中,如何配置無(wú)人值守安裝vsftpd+dhcp+nfs+tftp,非常實(shí)用,希望對(duì)大家能有所幫助。2014-09-09Linux磁盤掛載、分區(qū)、擴(kuò)容操作的實(shí)現(xiàn)方法
這篇文章主要介紹了Linux磁盤掛載、分區(qū)、擴(kuò)容操作的實(shí)現(xiàn)方法,詳細(xì)的介紹了這些基礎(chǔ)概念及其實(shí)現(xiàn),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-12-12Apache多虛擬主機(jī)多站點(diǎn)配置的兩種實(shí)現(xiàn)方案
本文介紹了在Apache服務(wù)器上配置多虛擬主機(jī)的兩種方案:基于IP地址的虛擬主機(jī)配置和基于域名的虛擬主機(jī)配置,詳細(xì)說(shuō)明了每個(gè)方案的配置步驟,以實(shí)現(xiàn)在同一臺(tái)服務(wù)器上托管多個(gè)網(wǎng)站的目的,感興趣的可以了解一下2024-09-09