###
# /usr/lib/systemd/system 给服务做enable,那么就会生成一个软链接, 系统所有unit,分为以下类型,这些文件都叫做unit
# service 系统服务
# target 多个unit组成的组
# device 硬件设备
# mount 文件系统挂载点
# aotomount 自动挂载点
# path 文件或路径
# scope 不是由systemd启动的外部进程
# slice 进程组
# snapshot systemd 快照
# socket 进程间通信套接字
# swap swap文件
# timer 定时器
# unit 相关命令
# systemctl list-units 列出正在允许的unit
# systemctl list-units --all 列出所有的包括失败的或者inactive的
# systemctl list-units --all --state=inactive 列出inactive的unit
# systemctl list-units --type=service 列出状态为active的service
# systemctl is-active crond 查看某个服务是否为active
# systemctl is-enabled crond 查看某个服务是否为enabled