关闭图形界面下普通用户关机重启命令- 7.x - CentOS
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关闭图形界面下普通用户关机重启命令- 7.x - CentOS相关的知识,希望对你有一定的参考价值。
vim /etc/polkit-1/rules.d/55-inhibit-shutdown.rules
polkit.addRule(function(action, subject) { if (action.id.indexOf("org.freedesktop.login1.power-off") == 0 || action.id.indexOf("org.freedesktop.login1.reboot") == 0) { try { // user-may-reboot exits with success (exit code 0) // only if the passed username is authorized polkit.spawn(["/usr/local/bin/user-may-reboot", subject.user]); return polkit.Result.YES; } catch (error) { // Nope, but do allow admin authentication return polkit.Result.AUTH_ADMIN; } } });
chmod 755 55-inhibit-shutdown.rules
不用重启,命令就会运行
以上是关于关闭图形界面下普通用户关机重启命令- 7.x - CentOS的主要内容,如果未能解决你的问题,请参考以下文章