systemctl命令是用來管理systemd服務的工具。下面是systemctl命令的用法:
啟動一個服務:
systemctl start <服務名>
停止一個服務:
systemctl stop <服務名>
重啟一個服務:
systemctl restart <服務名>
查看一個服務的狀態:
systemctl status <服務名>
啟用一個服務,使其在系統啟動時自動啟動:
systemctl enable <服務名>
禁用一個服務,使其在系統啟動時不自動啟動:
systemctl disable <服務名>
查看一個服務的配置文件:
systemctl cat <服務名>
查看所有已安裝的服務:
systemctl list-unit-files --type=service
查看所有運行中的服務:
systemctl list-units --type=service --state=running
查看服務的日志:
journalctl -u <服務名>
以上是systemctl命令的一些常用用法,更多的用法可以通過man systemctl命令查看systemctl的手冊頁。