systemd相关命令
pstree
查看systemd的结构树systemd-analyze (time) 启动系统到登录界面的时间,分为kernel和Userspace两部分systemd-analyze blame 启动过程中各服务的花费的时间systemd-analyze verify 显示所有系统单元中是否有语法错误systemd-analyze plot > boot.svg 将整个引导过程写入一个Svg格式文件中以便分析(/home/username,用户文件夹下)以下systemctl服务管理命令,本身列出运行中的服务清单systemctl list-units 不带多余信息列出运行中的服务清单systemctl --all --no-pager | grep -i not-found 查看挂掉的服务 sudo systemctl mask ***.service 把挂掉的服务踢掉 systemctl --failed 列出运行失败的服务及原因systemctl start ***.service 启动目标服务(***)systemctl stop ***.service 关闭目标服务(***)systemctl restart,tyr-restart,reload ***.service 重启(运行中)或启动(未运行),重启(只在运行中的),重新加载(配置文件)systemctl status ***.service 检查服务状态systemctl enable/disable ***.service 设置服务可或不可开机启动systemctl is-enabled ***.service 检查服务是否开机启动远程管理systemctl status sshd -H users 电源管理systemctl poweroff 关机systemctl reboot 重启systemctl suspend 待机systemctl hibernate 休眠