systemd デバイス間接状態

systemd デバイス間接状態

どのユニットが間接的な状態で他のユニットをアクティブにするかを確認する方法を知りたいです。

私はGnomeとDebianサーバーを使ってArchを実行します。私のDebianコンピュータでは、systemctl list-unit-files --type=target --state=enabled予想通り次のような出力を見ることができます。

default.target    enabled
multi-user.target enabled

multi-user.targetしかし、Archデスクトップでは:とgraphical.target(アーチのデフォルト)が両方ともアクティブになっていますが、驚くべきことではありません。この単位ファイルの状態を確認すると、両方です。indirect依存関係を一覧表示graphical.targetするとgdm.servicemulti-user.target。 gdmユニットファイルにはAlso=セクションは表示されません[Install]。それでは何がアクティブになりますかgraphical.target

この「間接的な」ソリューションを使用するのはなぜですか?

ベストアンサー1

からman systemd.special

グラフィックターゲット
       A special target unit for setting up a graphical login screen.
       This pulls in multi-user.target.

       Units that are needed for graphical logins shall add Wants= dependencies for their unit to this unit (or multi-user.target) during installation.
       This is best configured via WantedBy=graphical.target in the unit's [Install] section.

したがって、あなたのコンテンツはgdm.serviceより多くを説明します。


これは私のシステムの2つのサービスに関する情報です。 「静的」という点に注意してください。

$ systemctl status multi-user.target graphical.target

● multi-user.target - Multi-User System
     Loaded: loaded (/lib/systemd/system/multi-user.target; static)
     Active: active since Mon 2023-09-04 09:34:27 +03; 11h ago
      Until: Mon 2023-09-04 09:34:27 +03; 11h ago
       Docs: man:systemd.special(7)

Sep 04 09:34:27 kubuntu systemd[1]: Reached target multi-user.target - Multi-User System.

● graphical.target - Graphical Interface
     Loaded: loaded (/lib/systemd/system/graphical.target; static)
     Active: active since Mon 2023-09-04 09:34:27 +03; 11h ago
      Until: Mon 2023-09-04 09:34:27 +03; 11h ago
       Docs: man:systemd.special(7)

Sep 04 09:34:27 kubuntu systemd[1]: Reached target graphical.target - Graphical Interface.
$ systemctl cat multi-user.target graphical.target

# /lib/systemd/system/multi-user.target
#  SPDX-License-Identifier: LGPL-2.1-or-later
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=Multi-User System
Documentation=man:systemd.special(7)
Requires=basic.target
Conflicts=rescue.service rescue.target
After=basic.target rescue.service rescue.target
AllowIsolate=yes

# /lib/systemd/system/graphical.target
#  SPDX-License-Identifier: LGPL-2.1-or-later
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=Graphical Interface
Documentation=man:systemd.special(7)
Requires=multi-user.target
Wants=display-manager.service
Conflicts=rescue.service rescue.target
After=multi-user.target rescue.service rescue.target display-manager.service
AllowIsolate=yes
$ ls -la /lib/systemd/system/{multi-user,graphical}.target
-rw-r--r-- 1 root root 606 Jan 26  2023 /lib/systemd/system/graphical.target
-rw-r--r-- 1 root root 540 Jan 26  2023 /lib/systemd/system/multi-user.target

おすすめ記事