web-dev-qa-db-ja.com

Ubuntu 16.04の電源がオフになりません:poweroff.targetが無効になります

Ubuntu 16.04の電源はオフになりません。画面右上のアイコンに移動してシャットダウンをクリックしても、シャットダウンしません。 shutdown -h nowを実行しましたが、これが私が得たものです:

tanner@tanner-x151x:~$ shutdown -h now
Failed to set wall message, ignoring: Interactive authentication required.
Failed to power off system via logind: Interactive authentication required.
Failed to start poweroff target: Interactive authentication required.
See system logs and 'systemctl status poweroff.target' for details. 
Failed to open /dev/initctl: Permission denied 
Failed to talk to init daemon. 
tanner@tanner-x151x:~$ Sudo shutdown -h now 
[Sudo] password for tanner: 
Failed to start poweroff target: Transaction is destructive. 
5ee system logs and 'systemctl status poweroff.target' for details.
tanner@tanner-x151x:~$ Sudo halt now
Too many arguments. 
tanner@tanner-x151x:~$ systemctl status poweroff.target
  poweroff.target - Power-off
   Loaded: loaded (/lib/systemd/system/poweroff.target; disabled; vendor preset:
   Active: inactive (dead) 
   Docs: man:systemd.special(7)

なぜこれが起こっているのか、どうすれば修正できるのかわかりません。助けていただければ幸いです。

23
Enneptt

それは少し残酷ですが、あなたが試すことができます:

須藤パワーオフ-f

回答のクレジットはここにあります: https://askubuntu.com/a/788559/580637

4
Ben Aveling

この問題を解決するには、次のコマンドを入力して「poweroff.target」のsystemdサービスを有効にします。

systemctl enable poweroff.target
4
CubeDev