##現在していること
シャットダウンボタンを追加して、シャットダウンできるようにしました。
↓のサービスファイルを作成して、昨日動作確認したところ、問題なく動作しました。
html
1[Unit] 2Description=Shutdown Daemon 3 4[Service] 5ExecStart =/home/pi/dev/Shutdownd.py 6Restart=always 7Type=simple 8 9[Install] 10WantedBy=multi-user.target
##困っていること
昨日まで動作していたのですが、今日ラズパイを起動し、シャットダウンを押しても何も起きません。
(シャットダウンが実行されません。)
次のコマンドを事項したところ、エラーが発生してしまいました。
pi@raspberrypi:~/dev $ sudo systemctl status shutdownbuttond.service
このエラーの内容と対処法について教えてください。
エラー表示内容
html
1pi@raspberrypi:~/dev $ sudo systemctl status shutdownbuttond.service 2● shutdownbuttond.service - Shutdown Daemon 3 Loaded: loaded (/usr/lib/systemd/system/shutdownbuttond.service; enabled; ven 4 Active: failed (Result: exit-code) since Wed 2019-10-09 13:34:30 JST; 8min ag 5 Process: 416 ExecStart=/home/pi/dev/3_Shutdownd.py (code=exited, status=203/EX 6 Main PID: 416 (code=exited, status=203/EXEC) 7 810月 09 13:34:29 raspberrypi systemd[1]: shutdownbuttond.service: Main process e x 910月 09 13:34:29 raspberrypi systemd[1]: shutdownbuttond.service: Unit entered f a 1010月 09 13:34:29 raspberrypi systemd[1]: shutdownbuttond.service: Failed with re s 1110月 09 13:34:30 raspberrypi systemd[1]: shutdownbuttond.service: Service hold-o f 1210月 09 13:34:30 raspberrypi systemd[1]: Stopped Shutdown Daemon. 1310月 09 13:34:30 raspberrypi systemd[1]: shutdownbuttond.service: Start request r 1410月 09 13:34:30 raspberrypi systemd[1]: Failed to start Shutdown Daemon. 1510月 09 13:34:30 raspberrypi systemd[1]: shutdownbuttond.service: Unit entered f a 1610月 09 13:34:30 raspberrypi systemd[1]: shutdownbuttond.service: Failed with re s
##追加情報
pi@raspberrypi:/usr/lib/systemd/system $ systemctl -t service
このコマンドを実行すると、fail状態となっていました。
⇒昨日までは、activeとなっていました。
pi@raspberrypi:/usr/lib/systemd/system $ systemctl enable shutdownbuttond.service
このコマンドを実行すると、次のメッセージが表示されます。
⇒昨日までは何も表示されませんでした。
html
1==== AUTHENTICATING FOR org.freedesktop.systemd1.manage-unit-files === 2Authentication is required to manage system service or unit files. 3Multiple identities can be used for authentication: 4 1. ,,, (pi) 5 2. root 6Choose identity to authenticate as (1-2): 2 7Password: 8polkit-agent-helper-1: pam_authenticate failed: Authentication failure 9==== AUTHENTICATION FAILED === 10Failed to enable unit: Access denied
回答1件
あなたの回答
tips
プレビュー