Guest User

Untitled

a guest
Oct 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. kill processes by name
  2.  
  3. `killall -9 firefox`
  4.  
  5. Sometime process exists and cannot be killed due to:
  6. - being zombie. I.e. process which parent did not read the exit status. Such process does not consume any resources except PID entry. In `top` it is signaled Z
  7. - erroneous uninterruptible sleep. It should not happen but with a combination of buggy kernel code and/or buggy hardware it sometime does. The only method is to reboot or wait. In `top` it is signaled by D.
Add Comment
Please, Sign In to add comment