systemctl
title: Systemctldate: 2022-01-16 15:04:50updated: 2022-01-16 15:04:50comments: truetags:linuxsystemctlcategories:[note]lang: zh_CN# 列出所有运行中单元:
systemctl list-units
# 确定某个单元(如 nfs.service)是否启用:
systemctl is-enabled nfs.service
# 列出所有服务(包括启用的和禁用的):
...