通过 ssh 或直接从 PC 传递关机命令

通过 ssh 或直接从 PC 传递关机命令

从 pc1 以 user1 身份执行关机命令不会导致任何问题,但如果我尝试以 user2 身份使用 ssh 协议在 pc2 上远程使用它,它不起作用:它需要身份验证,然后才能工作。

:~$ /usr/sbin/shutdown -r 0
Failed to schedule shutdown: Interactive authentication required.

~# /usr/sbin/shutdown -r 60
Reboot scheduled for Sat 2024-01-06 11:01:36 CET, use 'shutdown -c' to cancel.
 
~$ ls -l /usr/sbin/shutdown lrwxrwxrwx 1 root root 14 8 févr. 2023 /usr/sbin/shutdown -> /bin/systemctl 

更多细节:

  • 从 pc1 以 user1 身份执行此命令不需要“sudo”。

我该如何解释这种行为?

相关内容