新聞中心
在Linux系統(tǒng)下面,top命令可以查看查看stopped進(jìn)程。但是不能查看stopped進(jìn)程的詳細(xì)信息。那么如何查看stopped 進(jìn)程,并且殺掉這些stopped進(jìn)程呢?

成都創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括安順網(wǎng)站建設(shè)、安順網(wǎng)站制作、安順網(wǎng)頁制作以及安順網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,安順網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到安順省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
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
rs may be displayed:
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)程信息,進(jìn)而使用kill命令將進(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
文章標(biāo)題:Linux下正確查殺stopped進(jìn)程
URL標(biāo)題:http://fisionsoft.com.cn/article/dhggsci.html


咨詢
建站咨詢
