systemctl

Systemd 是 Linux 系统工具,用来启动进程守护,已成为大多数发行版的标准配置

("守护进程"(daemon)就是一直在后台运行的进程(daemon))

systemctl是 Systemd 的主命令,用于管理系统。


# 重启系统
$ sudo systemctl reboot

# 关闭系统,切断电源
$ sudo systemctl poweroff

# CPU停止工作
$ sudo systemctl halt

# 暂停系统
$ sudo systemctl suspend

# 让系统进入冬眠状态 $ sudo systemctl hibernate # 让系统进入交互式休眠状态 $ sudo systemctl hybrid-sleep # 启动进入救援状态(单用户状态) $ sudo systemctl rescue

你可能感兴趣的:(systemctl)