本文共 593 字,大约阅读时间需要 1 分钟。
ls /usr/lib/systemd/system/ 文件源路径
上述图片中的文件都叫unit
service 系统服务
target 多个unit组成的组device 硬件设备mount 文件系统挂载点automount 自动挂载点path 文件或路径scope 不是由systemd启动的外部进程slice 进程组snapshot systemd快照socket 进程间通信套接字swap swap文件timer 定时器unit相关的命令
systemctl list-units //列出正在运行的unitsystemctl list-units --all //列出所有,包括失败的或者inactive的systemctl list-units --all --state=inactive //列出inactive的unit 指定状态
systemctl list-units --type=service//列出状态为active的service
systemctl is-active crond.service //查看某个服务是否为active
systemctl is-enabled crond.service //查看某个服务是否为enabled
转载于:https://blog.51cto.com/13451715/2310939