是否有可能使关机无法进行?

是否有可能使关机无法进行?

我在现场运行一些 Linux 机器,长话短说,我只是想让任何机器都无法关闭。这可能吗?

答案1

  1. 创建别名shutdown

  2. 编辑 sudoers 并使用感叹号来否定允许!SHUTDOWN

编辑: /etc/sudoers

将这些行添加到命令别名部分。

Cmnd_Alias     SHUTDOWN = /sbin/shutdown,/sbin/reboot,/sbin/halt,/sbin/poweroff

# User privilege specification
root   ALL=(ALL:ALL) ALL, !SHUTDOWN

# Allow members of group sudo to execute any command
%developers  ALL=(ALL:ALL) ALL,  !SHUTDOWN

參考文獻:https://www.tecmint.com/disable-shutdown-and-reboot-commands-in-linux/

相关内容