Linux - Ps what is process status D, Can I kill the process D
Ps what is process status D
What does the status D indicate when i run ps aux command?Can I kill the process D?
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)
# ps aux | grep yum root 2445 D 10:03 0:00 /usr/bin/python /usr/bin/yum install libuuid.so.1 root 24489 D 13:09 0:00 /usr/bin/python /usr/bin/yum install libuuid.so.1 root 7020 S+ 15:59 0:00 grep yum
What does D means for?
D uninterruptible sleep (usually IO), Once the process goes to this state, you can not wakeup the process. The state itself means that you can interrupt the process.
Can I kill the process D?
I tried to kill them with "kill -9 PID", but to no avail. It can be killed or cleard only when you reboot the machine.
The topic on Linux - Ps what is process status D is posted by - Math
Hope you have enjoyed, Linux - Ps what is process status DThanks for your time