2023年6月15日木曜日

Ubuntuでfwupd-refresh.serviceがfailedになっている

Ubuntu: 20 or 22

以下のコマンドで起動中のサービス一覧を表示した。

$ systemctl list-units --type=service

その中で fwupd-refresh.service というものが failed になっていたのでその解決方法です。

次のファイルに User=root を追記します。
/lib/systemd/system/fwupd-refresh.service

[Unit]
Description=Refresh fwupd metadata and update motd
Documentation=man:fwupdmgr(1)
After=network.target

[Service]
Type=oneshot
User=root
CacheDirectory=fwupdmgr

・・・・以下略・・・・

サービスを再起動します。

$ systemctl daemon-reload; service fwupd-refresh restart; service fwupd-refresh status


参考: https://askubuntu.com/questions/1415928/cannot-start-fwupd-refresh-service

0 件のコメント:

コメントを投稿