在Debian中,Systemd服务管理工具是主要用来管理和控制系统服务的工具。以下是一些常用的Systemd服务管理命令和示例:
systemctl list-units --type=service
sudo systemctl start [service_name]
sudo systemctl stop [service_name]
sudo systemctl restart [service_name]
sudo systemctl status [service_name]
sudo systemctl enable [service_name]
sudo systemctl disable [service_name]
请注意,上述命令中的[service_name]
应替换为实际的服务名称。可以通过systemctl list-units --type=service
命令查看所有服务的名称。希望这些信息对您有所帮助。