web-dev-qa-db-fra.com

Ubuntu 16.04 ne s'éteindra pas: poweroff.target est désactivé

Ubuntu 16.04 ne s'éteindra pas. Lorsque je vais à l'icône en haut à droite de l'écran et que je clique sur shutdown, cela ne s'arrête pas. J'ai couru shutdown -h now et voici ce que j'ai obtenu:

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)

Je ne sais pas pourquoi cela se produit ni comment résoudre ce problème. Toute aide serait appréciée.

23
Enneptt

C'est un peu brutal, mais vous pouvez essayer:

Sudo poweroff -f

Le crédit de réponse appartient ici: https://askubuntu.com/a/788559/580637

4
Ben Aveling

Le problème doit être résolu en entrant cette commande pour activer le service systemd de "poweroff.target":

systemctl enable poweroff.target
4
CubeDev