RHEL9.2 systemctl 有効・無効なサービス一覧を表示する方法
環境
RHEL 9.2
systemctlで有効・無効なサービス一覧を表示するには「systemctl list-unit-files -t service」コマンドを実行します。
1.起動時に有効化されるサービスの一覧は以下のコマンドで表示できます。
systemctl list-unit-files -t service | grep enabled
2.起動時には無効化されるサービスの一覧は以下のコマンドで表示できます。
systemctl list-unit-files -t service | grep disabled