How to kill a process initiated by another user, who is in same group as me?
|
feedback
|
|
As Bobby already mentioned in comments, being in same group do not allow you to kill process. Try running
where PID is process identifier of that process. If you do not have sudo access (or root password), you are out of luck. | |||
|
feedback
|

kill -15 PID? – Bobby Feb 18 '11 at 12:07[sudo|su|impersonate other user] kill -15 PID? Just because you're in the same group, doesn't mean that you're allowed to touch his belongs – Bobby Feb 18 '11 at 12:16