mikuQ / miku

miku
GNU General Public License v3.0
2 stars 1 forks source link

systemd #55

Open mikuQ opened 3 weeks ago

mikuQ commented 3 weeks ago
systemctl start <服务> #启动服务
systemctl stop <服务> #停止服务
systemctl restart <服务> #重启服务(会停止服务并立即启动/如果服务没有运行这个命令也会启动它)
systemctl reload <服务> #加载配置(重新加载配置而不中断服务)

systemctl status <服务> #查看服务状态
systemctl is-active <服务> #查看服务是否正在运行
systemctl is-enabled <服务> #查看服务是否设置了开机启动

systemctl enable <服务> #设置开机启动
systemctl disable <服务> #禁止开机启动

systemctl poweroff #关机并断电
systemctl halt #关机不断电
systemctl reboot #重启
systemctl suspend #睡眠
systemctl hibernate #休眠