Is there a security framework or general tool that can be used to ensure that a certain process started at boot in Linux cannot be terminated by any user or other process, including the root user?
Asked
Active
Viewed 272 times
1
-
See [SELinux](http://selinuxproject.org/). – Steven Monday Apr 09 '11 at 20:05
1 Answers
3
In short: no. The root user can do anything without restriction. Even init can be killed by root (which brings the system down.)

Andrew Lambert
- 167
- 6
-
I see. I was pretty sure that there were security frameworks out there that limited even what the root user was able to do. Thanks for the response. – H.G. Apr 09 '11 at 18:38