Killing all processes of current user
Posted
by Vi
on Super User
See other posts from Super User
or by Vi
Published on 2010-06-15T01:31:07Z
Indexed on
2010/06/15
1:33 UTC
Read the original article
Hit count: 283
user@host$ killall -9 -u user
Will it definitely kill all processes owned by user
(including forkbombs)?
- No new processes is spawned to
user
from other users. - No
user
's processes are in D-sleep and unkillable. - No processes are trying to detect and
ptrace
or terminate this startedkillall
.
E.g. if killall
will finish untampered and successfully is it 100% that no processes are left with this uid?
© Super User or respective owner