如何禁止主机重启和关机

1、禁止主机重启

sudo -i #切换到超级用户
chmod a-x /sbin/reboot#去除所有用户操作主机的权限 all user group other
#或者chmod 666 /sbin/reboot #4r 2w 1x 所以666表示rw-rw-rw-

2、禁止主机关机

chmod a-x /sbin/shutdown
ls -l /sbin/shutdown   #查看权限
ls -l /sbin/reboot
ls -l /sbin/halt
ls -l /sbin/poweroff

你可能感兴趣的:(linux)