Ubuntu系统管理systemd

systemctl命令

  • systemctl list-units - 列出所有jobs/serviceList all units (where unit is the term for a job/service)
  • systemctl start [NAME...] - 启动
  • systemctl stop [NAME...] - 停止
  • systemctl enable [NAME...] - Enable one or more unit files
  • systemctl disable [NAME...] - Disable one or more unit files
  • systemctl reboot - Shut down and reboot the system

For the complete list, see systemctl(1).

systemadm is the GUI equivalent to systemctl, if you like that sort of thing.

原文地址:https://www.cnblogs.com/yaos/p/14014372.html