I started forkbomb from normal user account say - "user1" I'm running a script which says

killall -u user1

But it didn't fix the situation.

link|improve this question

Is resetting the power an option? – FrustratedWithFormsDesigner Jul 28 '10 at 13:23
is there any other option? Though reboot solves this issue. But it's not permanent solution.thanks for answer – lakshmipathi Jul 28 '10 at 13:26
feedback

migrated from stackoverflow.com Jul 28 '10 at 13:26

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 8 down vote accepted

reboot the computer

if you can't, you could try:

killall -STOP -u user1
killall -KILL -u user1

If by "permanent solution", you mean preventing this happening again, well you can't really, but you can simply reduce the ulimit for the problem users and ignore them.

link|improve this answer
thanks setting ulimit is the permanent solution to prevent it. But killall -KILL also worked for me.thanks – lakshmipathi Jul 28 '10 at 13:34
feedback
while true; do killall -u user1; done
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.