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: 337
user@host$ killall -9 -u user
Will it definitely kill all processes owned by user (including forkbombs)?
- No new processes is spawned to
userfrom other users. - No
user's processes are in D-sleep and unkillable. - No processes are trying to detect and
ptraceor 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