systemctl 的 chkconfig --list 相当于什么?

systemctl 的 chkconfig --list 相当于什么?

CentOS/RHEL 7

我想查看我的系统上存在的服务列表以及它们将自动启动的 systemd 目标。那可能吗?我知道我可以运行systemctl cat foo并检查WantedBy单个服务的字段值,但我希望看到所有内容的完整列表。

基本上我正在寻找相当于chkconfig --list

答案1

啊没关系。它看起来chkconfig在 RHEL/CentOS 7 上仍然存在有限的容量,并且已经预料到了我的问题:

[foo@foobox ~] chkconfig

Note: This output shows SysV services only and does not include native
    systemd services.  SysV configuration data might be overridden by native
    systemd configuration. 

    If you want to list systemd services use `systemctl list-unit-files'.
    To see services enabled on particular target use
    `systemctl list-dependencies [target]'.

抱歉 - 我应该先检查一下。我只是认为旧的东西chkconfig不会存在于较新的操作系统中。

因此,虽然我可以使用指定的单个目标运行命令,但我看不到跨平台启动状态的总体摘要全部目标。

相关内容