- 论坛徽章:
- 0
|
请问如何杀了这些进程
查了一下 ps 的 man,关于进程的状态它是如下解释的。
我这里的是 D, 所以是 D uninterruptible sleep (usually IO) 了
- PROCESS STATE CODES
- D uninterruptible sleep (usually IO)
- R runnable (on run queue)
- S sleeping
- T traced or stopped
- Z a defunct ("zombie") process
- For BSD formats and when the "stat" keyword is used, additional letters
- may be displayed:
- W has no resident pages
- < high-priority process
- N low-priority task
- L has pages locked into memory (for real-time and custom IO)
复制代码
怎么才能唤醒他啊? 
这里查到了一则不幸的消息
http://linuxgazette.tolix.org/issue83/tag/6.html |
|